我在Javascript
代码中编写了 2 个函数,如下所示
Manager = FormManager.extend({
First: function () {
var response = this.Second("Feature"); //I'm able to get the alert
//I have added a click event handler
$('#element').on('click', function(){
var newResponse = this.Second("Bug"); //The alert is not poping
});
}
Second: function (type) {
alert(type);
//Performs certain operation
}
});
错误:未捕获的类型错误:对象 # 没有方法“第二”
我也试过不使用this
关键字 like
Second("Bug") // Error: There is no method
而这是我正在玩的程序上的一种简化格式(为了显示一个简单的示例)。我正在努力找出原因。
有人可以指导我走向正确的道路吗?