一直在阅读我最喜欢的程序员之一 Douglas Crockford,尤其是“方法”方法。
JavaScript:
Function.prototype.method = function (name, func) {
this.prototype[name] = func;
return this;
};
function myfunc(value) {
this.value=value;
}
myfunc.method('toString', function () {
return this.value;
});
var testvar = new myfunc('myself').toString();
alert(testvar);
我对return this
.
这里是什么return this
意思?
在我读过的内容中,该方法在没有它的情况下有效,称为链接,但我如何使用此“方法”函数使用链接,为什么它有用?
谢谢