我有一个名为aObject
的javascript对象,其中的一个fucntion被用作这样的jQuery回调函数:
var aObject = {
aVariable : 'whatever value',
test : function(e) {
// Trying to access property. But doesn't work as expected since I am getting the DOM element i.e form, not the aObject reference
var temp = this.aVariable;
}
}
$('document').ready(function(){
$('#some-html-form').submit(aObject.test);
});
当我在aObject
中调用测试方法时,这指的是已提交的表单元素。我想从test
回调函数访问当前对象?
我按照this回答中的描述尝试了以下代码,但它对我不起作用
$(document).ready(function() {
$('#add_api_form').submit(api_cahce.handle_add_form_submit.bind(this));
});
答案 0 :(得分:1)
与aObject
绑定,然后您可以访问该变量。
var aObject = {
aVariable : 'whatever value',
test : function(e) {
var temp = this.aVariable;
}
}
$('document').ready(function(){
$('#some-html-form').submit(aObject.test.bind(aObject));
});