arr.prototype.init.prototype = arr.prototype;关键步骤
(function(){
var jQuery = function(){
return new jQuery.fn.init();
}
jQuery.fn = jQuery.prototype = {
constructor : jQuery,
init : function(){
return this;
},
say : function(){
console.log('say:hello');
return this;
},
tell : function(){
console.log('tell:hello');
return this;
}
}
jQuery.fn.init.prototype = jQuery.prototype;
jQuery().tell();
jQuery().say();
console.log( jQuery() );
console.log( jQuery.fn );
console.log( jQuery.prototype );
})()
手机扫一扫
移动阅读更方便
你可能感兴趣的文章