会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
森海轮回
尝试一下那些曾经想做,却懒得做或不敢做的事
博客园
首页
新随笔
管理
上一页
1
···
11
12
13
14
15
16
17
18
19
···
31
下一页
2018年7月9日
日期补0
摘要: function add_zero(time){ var temp = time.split("-"); if(temp[1].length==1)temp[1] = "0"+temp[1]; if(temp[2].length==1)temp[2] = "0"+temp[2]; return temp[0]+"-"+temp[1...
阅读全文
posted @ 2018-07-09 14:53 森海轮回
阅读(94)
评论(0)
推荐(0)
2018年7月5日
form提交
摘要: <form class="form-horizontal" id="formPatient" action="index/patient/indexSearchDoctors" method="post"> $("#formPatient").serialize(); $("#formPatient
阅读全文
posted @ 2018-07-05 11:10 森海轮回
阅读(111)
评论(0)
推荐(0)
sublime快捷键
摘要: https://www.cnblogs.com/nickel99/p/6492607.html
阅读全文
posted @ 2018-07-05 09:59 森海轮回
阅读(112)
评论(0)
推荐(0)
2018年7月4日
视频遮挡问题
摘要: <iframe frameborder= "0" scrolling="no" style="padding:0 !important;background-color:transparent; position: absolute; z-index: -1; width: 100%; height
阅读全文
posted @ 2018-07-04 15:24 森海轮回
阅读(140)
评论(0)
推荐(0)
calc兼容性
摘要: https://blog.csdn.net/u011630575/article/details/49097205 width: -moz-calc(100% - 80px); width: -webkit-calc(100% - 80px); width: calc(100% - 80px);
阅读全文
posted @ 2018-07-04 10:39 森海轮回
阅读(331)
评论(0)
推荐(0)
2018年7月3日
javascript变量声明提升
摘要: https://www.cnblogs.com/silentjesse/p/4024536.html javascript的变量声明具有hoisting机制,JavaScript引擎在执行的时候,会把所有变量的声明都提升到当前作用域的最前面。 先看一段代码 1 2 3 4 5 var v = "he
阅读全文
posted @ 2018-07-03 17:01 森海轮回
阅读(176)
评论(0)
推荐(0)
jquery插件
摘要: https://www.cnblogs.com/joey0210/p/3408349.html 前言 如今做web开发,jquery 几乎是必不可少的,就连vs神器在2010版本开始将Jquery 及ui 内置web项目里了。至于使用jquery好处这里就不再赘述了,用过的都知道。今天我们来讨论下j
阅读全文
posted @ 2018-07-03 14:03 森海轮回
阅读(202)
评论(0)
推荐(0)
2018年7月2日
prop和attr在 jquery的
摘要: https://www.cnblogs.com/Showshare/p/different-between-attr-and-prop.html
阅读全文
posted @ 2018-07-02 17:03 森海轮回
阅读(121)
评论(0)
推荐(0)
2018年6月29日
onclick防止冒泡和json对象放入
摘要: function aa_click(e,name){ if ( e && e.stopPropagation ) { e.stopPropagation(); } else { window.event.cancelBubble = true; } next(name)} json对象加入oncli
阅读全文
posted @ 2018-06-29 11:11 森海轮回
阅读(648)
评论(0)
推荐(0)
2018年6月27日
git 入门
摘要: https://blog.csdn.net/longgeaisisi/article/details/78012406
阅读全文
posted @ 2018-06-27 20:46 森海轮回
阅读(141)
评论(0)
推荐(0)
上一页
1
···
11
12
13
14
15
16
17
18
19
···
31
下一页
公告