首页 > 代码库 > jQuery的无new构建
jQuery的无new构建
我只能说想法很好,设计的巧妙。看代码:
1 var jQuery = function( selector, context ) { 2 //执行了init函数并返回jQuery实例 3 return new jQuery.fn.init( selector, context, rootjQuery ); 4 }; 5 6 jQuery.fn = jQuery.prototype = { 7 constructor: jQuery, //重新把constructor指向Jquery,因为定义prototype的时候把constructor覆盖了 8 init: function( selector, context, rootjQuery ) { 9 .....10 },11 selector: "",12 jquery: "1.8.3",13 length: 0,14 size: function() {15 ......16 },17 ......18 ....19 };20 21 //把jQuery的原型链赋给jQuery.fn.init上的原型22 jQuery.fn.init.prototype = jQuery.fn;
jQuery的无new构建
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。