DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> Jquery選擇器 $實現原理
Jquery選擇器 $實現原理
編輯:JQuery特效代碼     
但由於工作的原因,很久不曾做過網站項目了,也沒有時間去好好研究Jquery的源碼,這個疑問也一直沒有得到解決了, 今天,空閒之余,打開Jquery的源碼看看,才明天它實現的原理,原來在加入jquery的js這個文件時,實際上是執行了一個函數,在這個函數裡己經初始化了$和JQuery變量, 實現這個功能源碼如下(代碼已刪減和更改,並不影響說明實現原理):
代碼如下:
(function() {
var
// Will speed up references to window, and allows munging its name.
window = this,
// Will speed up references to undefined, and allows munging its name.
undefined,
// Map over jQuery in case of overwrite
_jQuery = window.jQuery,
// Map over the $ in case of overwrite
_$ = window.$,
jQuery = window.jQuery = window.$ = function(selector, context) {
// The jQuery object is actually just the init constructor 'enhanced'
return new jQuery.fn.init(selector, context);
},
// A simple way to check for HTML strings or ID strings
// (both of which we optimize for)
quickExpr = /^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,
// Is it a simple selector
isSimple = /^.[^:#\[\.,]*$/;
jQuery.fn = jQuery.prototype = {
init: function(selector, context) {
// Make sure that a selection was provided
// Make sure that a selection was provided
selector = selector || document;
this[0] = selector;
this.length = 1;
this.context = selector;
return this;
},
show:function() {
alert("this.show");
},
// Start with an empty selector
selector: "",
// The current version of jQuery being used
jquery: "1.3.2"
};
jQuery.fn.init.prototype = jQuery.fn;
})();
function test(src){
alert($(src));
$(src).show();

從代碼裡我們可以看到有這樣一個函數執行了(funtion(){})();

var window = this;
_jQuery = window.jQuery;
_$ = window.$;

這幾句代碼應該是聲明jQuery和$變量,至於為什麼能這樣子用我還沒弄明白,等待高人解決!!

但我認為這並沒關系,因為最重要的是下面這段代碼:

jQuery = window.jQuery = window.$ = function(selector, context) {
return new jQuery.fn.init(selector, context);
};

可以看出創建jQuery.fn.init這樣一個函數返回給$, 這樣是可以使用$實例了,但還不能訪問jQuery.fn裡的方法,因此需要加上後面這句:

jQuery.fn.init.prototype = jQuery.fn;

實現了這些, Jquery中的其他功能就很好理解了, 無非是添prototype或extend中的方法了.
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved