大家好我是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 :(得分:3)
jQuery函数应返回this
以允许链接。
使用.end()
他撤消.filter('input:text')
,最后他返回this
jQuery对象。