码迷,mamicode.com
首页 > 其他好文 > 详细

jq整体架构(2.0.3版本)

时间:2016-07-14 08:31:54      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

  整个jq源码放在一个IIFE中。

(function( window, undefined ) {
 //....
})( window );

  

  在该IIFE中封装了jq相关组件。
  21到94行定义了一些变量和函数 jQuery = function(){};
  61行定义了下面的函数。

jQuery = function( selector, context ) {
        // The jQuery object is actually just the init constructor ‘enhanced‘
        return new jQuery.fn.init( selector, context, rootjQuery );
    },

  目前需对jQuery.fn.init进行深入研究。

jq整体架构(2.0.3版本)

标签:

原文地址:http://www.cnblogs.com/zhansu/p/5668982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!