对象(){this.x = 0;
xx.onclick = function(){
这里面想拿到外面this的值,下面的例子不想用,因为对象里面有动画重复调用有延迟,有没有其他方法?
}}----例子对象(){this.x = 0;
that = this;
xx.onclick = function(){
alert(that.x);
}}我好像看到有三个方法:bind;call;apply,但是看不懂,如果这个可以,能不能改下我的代码
1 回答
德玛西亚99
TA贡献1770条经验 获得超3个赞
xx.onclick = function(){
alert(that.x);
}
修改为
xx.onclick = function(){
alert(that.x);
}.bind(this)
添加回答
举报
0/150
提交
取消