摘要: // JavaScript Document // 每个弹窗的标识 var x =0; var idzt = new Array(); var Window = function(config){ //ID不重复 idzt[x] = "zhuti"+x; //弹窗ID //初始化,接收参数 this.config = { width : config.width || 3... 阅读全文
posted @ 2016-05-21 16:13 于超。 阅读(125) 评论(0) 推荐(0) 编辑
摘要: /*! jQuery v1.11.2 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(... 阅读全文
posted @ 2016-05-21 16:12 于超。 阅读(359) 评论(0) 推荐(0) 编辑
摘要: $(document).ready(function(e) { //根据ID找元素,找出的JQUERY对象,如果要取DOM对象,取索引0的元素 var jd = $("#aa"); //根据ID var jc = $(".bb"); //根据Class var di = $("div"); //根据标签名 var ip = $("input[bs=dd]");//根据属性筛选... 阅读全文
posted @ 2016-05-21 08:33 于超。 阅读(141) 评论(0) 推荐(0) 编辑