jquery Source code analysis jquery source code
jquery原始解析 jquery对象 // jQuery的写法 var $jQuery = function(selector, context) { //JQ对象根本就是init函数的实例对象,而init则是jQuery原型上的一个对象,它本身是没有什么方法的,全靠从jQuery原型上拿 return new $jQuery.fn.init(selector, context); } $jQuery.fn = $jQuery.prototype = { init: function() { this.name = 'test' return this; }, constructor: $jQuery, sayName : function(){ console.log('ccc'); } } //为了调用$jQuery.fn = $jQ
文件列表
jquery-Source-code-analysis--jquery source code
(预估有个125文件)
core.js
11KB
jquery.js
262KB
jquery.min.js
85KB
jquery.slim.min.js
68KB
jquery.slim.js
210KB
core.js
11KB
effects.js
17KB
ajax.js
22KB
event.js
19KB
deferred.js
11KB
暂无评论