作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个名为 aObject
的 javascript 对象,其中的一个函数用作 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
中的测试方法时,this指的是已提交的表单元素。我想从 test
回调函数访问当前对象?
我尝试了下面的代码,如 this 中所述。回答但它对我不起作用
$(document).ready(function() {
$('#add_api_form').submit(api_cahce.handle_add_form_submit.bind(this));
});
最佳答案
与aObject
绑定(bind)然后就可以访问该变量。
var aObject = {
aVariable : 'whatever value',
test : function(e) {
var temp = this.aVariable;
}
}
$('document').ready(function(){
$('#some-html-form').submit(aObject.test.bind(aObject));
});
关于javascript - 如何在jquery回调函数中获取当前对象引用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48147261/
我是一名优秀的程序员,十分优秀!