jquery源码--jquery对象

(function( window, undefined ) {    // 构造 jQuery 对象 22  var jQuery = (function() { 25    var jQuery = function( selector, context ) { 27      return new jQuery.fn.init( selector, context, root jQuery ); 28    },     // 一堆局部变量声明 97      jQuery.fn = jQuery.prototype = { 98        constructor: jQuery, 99        init: function( selector, context, rootjQuery ) { ... },           // 一堆原型属性和方法 319      }; 322    jQuery.fn.init.prototype = jQuery.fn; 324    jQuery.extend = jQuery.fn.extend = function() { ... }; 388    jQuery.extend({       // 一堆静态属性和方法 892    }); 955    return jQuery; 957 })();   // 省略其他模块的代码 9246  window.jQuery = window.$ = jQuery; 9266 })( window );

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgwxdj.html