jQuery源码解读---执行过程分析

JavaScript是一门基于对象的语言,而它的对象技术的实现又和其他语言有着很大的差异,在JavaScript中,一个类的定义一般采用下面这种模式(我所看到的):
// 定义一个构造函数;
testClass(param1, param2) {
this.attr1 = param1;
this.attr2 = param2;
...
}

// 在prototype对象上扩展,加上相应的方法;
testClass.prototype = {
Method1: function() {...},
Method2: function() {...},
...
}

// 定义一个实例;
var test = new testClass();

  在jQuery.js中,同样也是这种模式,只不过它要复杂很多,而且它还定义了一个jQuery.extend()的静态方法来扩展类的功能,jQuery.js代码执行过程完整分析如下:
// 防止多次载入而进行jQuery对象的判断;
if ( typeof window.jQuery == "undefined" ) {
window.undefined = window.undefined;

// jQuery的构造函数;
var jQuery = function( a, c ) { ... };

// jQuery的命名空间$;
if ( typeof $ != "undefined" ) jQuery._$ = $;
var $ = jQuery;

// 给jQuery的prototype增加一些基础方法和属性;
// 其中有些方法是调用下面的扩展方法实现的;
// 注意下面的jQuery.fn = jQuery.prototype;
jQuery.fn = jQuery.prototype = {
each: function( fn, args ) { ... },
find: function( t ) { ... },
...
};

// jQuery实现继承的方法;
jQuery.extend = jQuery.fn.extend = function( obj, prop ) {...};

// 实现一些基础的函数,有大部分是上面调用;
jQuery.extend({
init: function() { ... },
each: function( obj, fn, args ) { ... },
find: function( t, context ) { ... },
...
});

// 浏览器版本的检测;
new function() {
jQuery.browser = { safari:..., opera:..., msie:..., mozilla:... };
...
};

// jQuery.macros扩展,主要用于jQuery.init(),进行jQuery的初始化;
jQuery.macros = {
filter: [ ... ],
attr: { ... },
each: { ... },
...
};

// jQuery初始化;
jQuery.init();

// 实现jQuery的重要方法ready();
jQuery.fn.extend({
ready: function( f ) { ... }
...
};

// 上面ready()方法的具体实现;
jQuery.extend({
ready: function() { ... },
...
};

// 对浏览器某些事件进行绑定和解绑定;
new function() {
...
jQuery.event.add( window, "load", jQuery.ready );
};

// 当IE浏览器关闭时,清除上面绑定的事件,防止内存泄漏;
if ( jQuery.browser.msie ) jQuery(window).unload( ... );

// 实现一些浏览器效果;
jQuery.fn.extend({
show: function( speed, callback ) { ... },
hide: function( speed, callback ) { ... },
...
};

// 上面的一些函数具体实现;
jQuery.extend( {...} );

// 以下都是Ajax的实现,这里声明原型,具体实现调用下面的函数;
jQuery.fn.extend({
loadIfModified: function(url, params, callback ) { ... },
...
};

// 针对IE浏览器创建不同的XMLHttpRequest对象;
if (jQuery.browser.msie && typeof XMLHttpRequest == "undefined") { ... };

// Ajax函数的绑定;
new function() {
var e = "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess".split(",");
...
};

// Ajax函数的具体实现;
jQuery.extend({
get: function( url, data, callback, type, ifModified ) { ... },
post: function( url, data, callback, type ) { ... },
ajax: function( type, url, data, ret, ifModified ) { ... },
...
}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值