鏈結模式 chain (return this, 就是 jQuery 的方式)
by 蘇德宙, 2012-06-06 17:06, 人氣(1510)
var obj = {
value: 1,
inc: function() {
this.value ++;
return this;
},
add: function(v) {
this.value += v;
return this;
},
out: function() {
alert(this.value);
}
};
obj.inc().add(3).out();