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
用户评论