針對上面的示例,我們可以調用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(),你學會了嗎。