Fork me on GitHub
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 31 下一页
摘要: 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 森海轮回 阅读(90) 评论(0) 推荐(0) 编辑
摘要: <form class="form-horizontal" id="formPatient" action="index/patient/indexSearchDoctors" method="post"> $("#formPatient").serialize(); $("#formPatient 阅读全文
posted @ 2018-07-05 11:10 森海轮回 阅读(107) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/nickel99/p/6492607.html 阅读全文
posted @ 2018-07-05 09:59 森海轮回 阅读(109) 评论(0) 推荐(0) 编辑
摘要: <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 森海轮回 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 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 森海轮回 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 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 森海轮回 阅读(173) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/joey0210/p/3408349.html 前言 如今做web开发,jquery 几乎是必不可少的,就连vs神器在2010版本开始将Jquery 及ui 内置web项目里了。至于使用jquery好处这里就不再赘述了,用过的都知道。今天我们来讨论下j 阅读全文
posted @ 2018-07-03 14:03 森海轮回 阅读(193) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/Showshare/p/different-between-attr-and-prop.html 阅读全文
posted @ 2018-07-02 17:03 森海轮回 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 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 森海轮回 阅读(632) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/longgeaisisi/article/details/78012406 阅读全文
posted @ 2018-06-27 20:46 森海轮回 阅读(136) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 31 下一页