随笔分类 -  jquery

摘要:经过一番查找,之后在mozilla开发社区找到了:active不起作用的答案:[1] By default, Safari Mobile does not use the :active state unless there is a touchstart event handler on the ... 阅读全文

posted @ 2015-10-22 14:52 lchecho

摘要:functionbrowserRedirect(){varsUserAgent=navigator.userAgent.toLowerCase();varbIsIpad=sUserAgent.match(/ipad/i)=="ipad";varbIsIphoneOs=sUserAgent.match... 阅读全文

posted @ 2015-10-21 10:46 lchecho

摘要:今天做项目的时候,有地方需要使用到js cookie,由于我们使用的是jquery,所以下载了一个jquery.cookie.js,结果使用的时候发现存在问题,考虑可能是版本的原因,后来换了几个版本依然不行,于是直接使用原生的。那么问题来了,挖掘机。。。。不是,cookie可以成功设置,但是多次... 阅读全文

posted @ 2015-08-14 09:14 lchecho

摘要://计算日期之差functiongetDays(strDateStart,strDateEnd){varstrSeparator="-";//日期分隔符varoDate1;varoDate2;variDays;oDate1=strDateStart.split(strSeparator);oDate... 阅读全文

posted @ 2014-09-13 10:38 lchecho

摘要:以click事件为例,当父节点或子节点绑定了click事件后,点击该节点,事件会发生冒泡传递,即会造成事件重复绑定,这时候需要阻止事件的冒泡,采用stopPropagation或cancelBubble等。stopPropagation() 方法定义和用法不再派发事件。终止事件在传播过程的捕获、目标... 阅读全文

posted @ 2014-08-08 21:44 lchecho

摘要:$(function(){$(document).bind("click",function(e){if($(e.target).closest("#txt").length>0){$("#tip").show();}else{$("#tip").hide();}}); });closest会首先... 阅读全文

posted @ 2014-07-28 15:48 lchecho

导航