-
jQuery通过传递参数的不同,实现了9种方法的重载: 1. jQuery([selector,[context]]) 2. jQuery(element) 3. jQuery(elementArray) 4. jQuery(object) 5. jQuery(jQuery object) 6. jQuery(html,[ownerDocument]) 7. jQuery(html,[attributes]) 8. jQuery() 9. jQuery(callback)查看全部
-
(function () {})(): ()操作符的返回值是里边的函数。查看全部
-
看不懂撒查看全部
-
最新jQuery2.1.1版本的结构:查看全部
-
学习安排三查看全部
-
学习安排一查看全部
-
学习流程查看全部
-
each 回调函数返回 true,false 可以中断循环查看全部
-
target = this; 对于 ajQuey.extend 来说就是 ajQuery 对于 ajQuery.fn.extend 来说就是 ajQuery.fn查看全部
-
//这样写比较好理解 //两种调用方式,都确保返回的是对象 //new aQuery('#book') //aQuery('#book') var aQuery = function(selector) { if (this instanceof aQuery) { var elem = document.getElementById(/[^#].*/.exec(selector)[0]); this.length = 1; this[0] = elem; this.context = document; this.selector = selector; this.get = function(num) { return this[num]; } return this; }else{ return new aQuery(selector); } }查看全部
-
关于 this 指针的用法 http://blog.csdn.net/motian06/article/details/8258942查看全部
-
$(selector).each() 通过更改this指向到$.each()这个函数 each: function(callback, args) { return jQuery.each(this, callback, args); }查看全部
-
通过回调更改this的指向查看全部
-
end 指向这个堆栈 addBack 添加当前元素到堆栈合并查看全部
-
jQuery.extend 是扩展了jQuery;jQuery.fn.extend 是扩展了fn,也就是jQuery.prototype原型对象查看全部
举报
0/150
提交
取消