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);
http://api.jquery.com/end/ – Giacomo 2011-06-06 09:31:42