2016年8月1日
摘要: //自定义事件 function Event() { var handles = []; //绑定事件 this.addHandle=function(fn) { handles.push(fn); } //触发事件 this.exec = function () { if (handles.length > ... 阅读全文
posted @ 2016-08-01 19:24 Just_Do 阅读(164) 评论(0) 推荐(0)
摘要: $("#test").is(":hidden");//是否隐藏 $("#test").is(":visible");//是否可见 阅读全文
posted @ 2016-08-01 11:18 Just_Do 阅读(2818) 评论(0) 推荐(0)