jQuery源码解读三选择器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery源码解读三选择器相关的知识,希望对你有一定的参考价值。

直接上jQuery源码截取代码

// Map over jQuery in case of overwrite
_jQuery = window.jQuery,

// Map over the $ in case of overwrite
_$ = window.$,

// Define a local copy of jQuery 可以看出创建了jQuery.fn.init这样的一个函数返回给$,这样就可以使用$实例了
jQuery = function (selector, context) {
// The jQuery object is actually just the init constructor ‘enhanced‘
return new jQuery.fn.init(selector, context, rootjQuery);
},

//下面的这两句,使得$实例可以访问jQuery.fn里面的方法
jQuery.fn = jQuery.prototype = {

init: function (selector, context, rootjQuery) {

},
}

// Give the init function the jQuery prototype for later instantiation
jQuery.fn.init.prototype = jQuery.fn;

 

以上是关于jQuery源码解读三选择器的主要内容,如果未能解决你的问题,请参考以下文章

jQuery源码解读001-总体目录

jQuery公司源码解读,v3.1.1中从菜鸟到大神之路

jQuery源码解读第4章---对extend的解读

jQuery源码解读第5章---对Callbacks的解读

jquery源码解读

优秀前端源码解读技巧:以jQuery和Vue源码为例