jQuery 的初始化、对象构建之浅析

之前本人的工作和学习多以原生js 为主,对jQuery 一直都不是很了解,但jQuery 作为当今最优秀的js 类库之一,必须是要花时间好好学习下的,今天正好蛋疼,读了里面一些代码,小结一下:

  1. 整个类库定义在一匿名函数中,杜绝了全局变量的产生;
  2. 将undefined 作为缺失的参数传递,防止了undefined 变量的污染;
  3. 可以看出$(...) 实际上返回的是jQuery.fn.init 对象的实例,随后将该对象的prototype 指向了jQuery.prototype (语句jQuery.fn.init.prototype = jQuery.fn),因此产生的实例共享着jQuery.prototype 里的方法和属性且实现了链式编程的操作;
  4. 最后通过window.jQuery = window.$ = jQuery 将jQuery 与$ 导出为全局变量。

复制代码
(function(window, undefined) {

// Define a local copy of jQuery
var jQuery = (function() {

var 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.prototype = {
constructor : jQuery,
init :
function(selector, context, rootjQuery) {
// ...
}
// ...
};

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

// ...

// Expose jQuery to the global object
return jQuery;

})();

// ...

window.jQuery
= window.$ = jQuery;

})(window);
复制代码

posted @   hihuimin  阅读(2326)  评论(9编辑  收藏  举报
编辑推荐:
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· 展开说说关于C#中ORM框架的用法!
· SQL Server 2025 AI相关能力初探
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
点击右上角即可分享
微信分享提示