当我们使用 return this 时,从下面的代码 1 和代码 2 中哪一个是正确的?
代码1:
$.fn.greenify = function() {
$.each(function() {
this.css( "color", "green" );
return this;
};
};
代码2:
$.fn.greenify = function() {
$.each(function() {
this.css( "color", "green" );
};
return this;
};