在事件绑定中,调用回调函数时改变this的指向,通常有几种做法,原生的bind()方法,和jquery中的$.proxy()。如果在事件绑定中,想让上下文从目标html元素中切换为局部变量,就可以这样做。
两个例子:
①
func.bind(obj);
参数: func ,要调用的函数对象,必选
obj ,this 关键字可在新函数中引用的对象,必选
返回: 与 func 函数相同的新函数
new function(){ this.appName = "wem"; document.documentElement.addEventListener("click", function(e){ alert(this.appName); }.bind(this), false); };
②
$.proxy(func, this)
参数: func ,要调用的已有函数对象,必选
obj ,this 关键字可在新函数中引用的对象,必选
返回: 与 func 函数相同的新函数
new function(){
this.appName = "wem2";
document.documentElement.addEventListener("click", $.proxy(function(){
alert(this.appName)
} ,this), false);
};
时间: 2024-09-28 22:14:37