我试图在回调函数中调用一个方法。
jsTest.prototype.getTitle = function() {
thisJS=this
//the console will returns my object...so it's not undefined.
console.log(thisJS);
//codes.....
//ajax callback function
ajaxcall.callback=function(data){
//call the addName method
thisJS.addName(data, 1);
};
}
jsTest.prototype.addName=function(data, bool){
console.log(data);
}
我有一个错误说
Uncaught TypeError: Cannot call method 'addName' of undefined
有没有办法解决这个问题?非常感谢!