DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery 插件學習(四)
jquery 插件學習(四)
編輯:JQuery特效代碼     
針對上面的示例,我們可以調用jquery.fn.extend()方法來創建jquery對象方法。具體代碼如下》
. 代碼如下:
jQuery.fn.extend({
test : function(){
return this.each(function(){
alert(this.nodeName);
})
}
});

調用跟上面一樣哦
. 代碼如下:
$('body *').click(function(){
$(this).test().html(this.nodeName).hide(1000);
});

到這裡,已經介紹了寫jquery插件的兩種方法,jquery.extend() 和jquery.fn.extend(),你學會了嗎。
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved