親問各位一個問題 JS代碼如下
function Test(){
this.add = function(){
alert(1);
}
this.modAdd = function(){
this.add();
add();
// 以上兩種均無法調用到ADD方法
// Uncaught TypeError: this.add is not a function
}
}
var test = new Test()
test.modAdd();
請問我如何才通過 modAdd()方法調用函數內部本身的 add 方法?
function Test(){
this.add = function(){
alert(1);
}
var self = this;//定義一個變量指向對象this
this.modAdd = function(){
self.add();
// 以上兩種均無法調用到ADD方法
// Uncaught TypeError: this.add is not a function
}
}