需要帮助理解代码

时间:2011-06-06 09:29:04

标签: javascript jquery

大家好我是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);

1 个答案:

答案 0 :(得分:3)

jQuery函数应返回this以允许链接。

使用.end()他撤消.filter('input:text'),最后他返回this jQuery对象。