这可能吗?
function testObj(testArg) {
//Do obj stuff here
}
testObj.prototype.addFn = function() {
this.test = testArg;
}
这将不起作用,因为原型无法使用原始对象参数,但是有没有一种方法可以访问它们而不必通过函数再次传递它们?
这可能吗?
function testObj(testArg) {
//Do obj stuff here
}
testObj.prototype.addFn = function() {
this.test = testArg;
}
这将不起作用,因为原型无法使用原始对象参数,但是有没有一种方法可以访问它们而不必通过函数再次传递它们?