我有一个函数foo
,在window.scroll
上调用。我想访问foo中的对象变量,例如我想从父对象中打印hello的值。
var Object = {
hello: "hello",
foo: function(e){
alert(this.hello); //Prints undefined! I want to get this.hello
},
scrollListener: function(){
var _this = this;
$(window).scroll(_this.foo);
},
};
答案 0 :(得分:2)
答案 1 :(得分:0)