2011-06-06 155 views
2

大家好我是jQuery的新需要幫助理解代碼

這段代碼書的jQuery在行動第219頁

爲什麼他用.end()方法

,並感謝:)

(function($){ 
$.fn.setReadOnly = function(readonly) { 
return this.filter('input:text') 
.attr('readOnly',readonly) 
.css('opacity', readonly ? 0.5 : 1.0) 
.end(); 
}; 
})(jQuery); 
+0

http://api.jquery.com/end/ – Giacomo 2011-06-06 09:31:42

回答

3

jQuery函數應該返回this以允許鏈接。

使用.end()他撤消了.filter('input:text')所以最後他返回了this jQuery對象。

+0

謝謝@ThiefMaster – tito11 2011-06-06 09:53:52