我有一个简单的jQuery ready
事件,它通过调用setupView
对象中的函数来初始化视图。
我的问题是,从setSomethingImportant
函数调用函数init
的适当方法是什么,如下所示?
由于调用是从与init
函数不同的执行上下文进行的,因此this.setSomethingImportant()
不起作用。但是,如果我使用setupView.setSomethingImportant()
,它就有效。我遇到的问题是,如果var名称(setupView
)发生变化,我将不得不更改代码的主体。
(function() {
$(document).ready(function() {
setupView.init();
});
var setupView = {
currentState : "CT",
init : function () {
$("#externalProtocol").change( function () {
console.log("Changed =" + $(this).val());
setSomethingImportant();
// Question ? how to call a method in the setupView object
});
},
setSomethingImportant : function () {
this.currentState="TC";
console.log("Something has changed :" + this.currentState );
}
}
}(jQuery);
答案 0 :(得分:3)
将this
存储到变量中:
var setupView = {
currentState: "CT",
init: function() {
// Keep a reference to 'this'
var self = this;
$("#externalProtocol").change(function() {
console.log("Changed =" + $(this).val());
// Use the old 'this'
self.setSomethingImportant();
});
},
setSomethingImportant: function() {
this.currentState = "TC";
console.log("Something has changed :" + this.currentState);
}
};
请参阅Working demo。
答案 1 :(得分:1)
只需单独声明该功能,然后像这样调用:
function setSomethingImportant(context) {
context.currentState="TC";
console.log("Something has changed :" + context.currentState );
};
(function() {
$(document).ready(function() {
setupView.init();
});
var setupView = {
currentState : "CT",
init : function () {
$("#externalProtocol").change( function () {
console.log("Changed =" + $(this).val());
setSomethingImportant(this);
// Question ? how to call a method in the setupView object
});
},
setSomethingImportant : function () {
setSomethingImportant(this);
}
}
}(jQuery);
答案 2 :(得分:1)
请注意,我更改了原始解决方案。我现在使用even.data将数据传递给事件处理程序。
(function() {
$(document).ready(function() {
setupView.init();
});
var setupView = {
currentState : "CT",
init : function () {
$("#externalProtocol").change({ _this: this }, function (event) {
console.log("Changed =" + $(this).val());
event.data._this.setSomethingImportant();
});
},
setSomethingImportant : function () {
this.currentState="TC";
console.log("Something has changed :" + this.currentState );
}
}
}(jQuery);