整个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进行深入研究。
时间: 2024-11-07 19:52:47