任何人都可以告诉我如何检测单击的类的数组索引。
所以,如果我有:
HTML
<span class="test">first</span>
<span class="test">second</span>
<span class="test">third</span>
MooTools JS
$$('.test').addEvent('click', function(event){
// alert(this array index);
});
任何帮助都会很棒, 谢谢!
答案 0 :(得分:2)
非常简单 - 不要.addEvent
,它会为你做.each,而是自己写.each
,它支持element, index
:
$$('.test').each(function(el, index) {
el.addEvent('click', function(event){
alert(index); // 0, 1, 2
});
});