首页 > Web开发 > 详细

jQuery的无new构建

时间:2016-09-01 12:57:13      阅读:218      评论:0      收藏:0      [点我收藏+]

我只能说想法很好,设计的巧妙。看代码:

 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构建

原文:http://www.cnblogs.com/gongshunkai/p/5829162.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!