gpt4 book ai didi

javascript - Mootools - 如何在事件中引用本地 'this' 和类 'this'?

转载 作者:行者123 更新时间:2023-11-29 20:08:08 25 4
gpt4 key购买 nike

有 10 个 li 元素,其中 5 个包含 a 元素。我想使用 Mootools 在 li 元素上添加一个事件。

一个类几乎没有变量和方法,包括 li 元素的事件,我的问题来自这里。请查看下面的 li 事件,

li.addEvents({
mouseover: function(e){
console.log(this.id + ' / ' + this.classVar);
}.bind(this)
});

如果我需要引用 li 本身和一个类变量,因为每个 li 都有唯一的 idclassVar 也有信息。但问题是,如果我对事件使用 bind(this)this.id 将不起作用,或者如果不使用它,*this.classVar' 将不起作用.

如果我使用 e.target.id 而不是 this.id,它会返回正确的 ID,如果只有 li 没有一个元素。否则 e.target 引用 a 元素。

有人可以帮我解决这个问题吗?非常感谢

最佳答案

最简单的方法是使用selfme 解决方法,就像这样...

function myClass()
{
var self = this;
this.classVar = 'foo';

// some other code

li.addEvents({
mouseover: function(e){
console.log(this.id + ' / ' + self.classVar);
}
});
}

关于javascript - Mootools - 如何在事件中引用本地 'this' 和类 'this'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11240709/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com