如何获取Mootools中单击元素的索引

时间:2011-11-14 15:12:04

标签: javascript mootools

如何在jQuery中获取Mootools中的元素索引。 例如:

    this.controls.addEvent('click', function(event){
        if (this.hasClass('h-inactiveslideshowcontrol')) {
            alert(this.index);
        }
    });

如何获取点击元素的索引?

1 个答案:

答案 0 :(得分:5)

首先遍历元素集合。

this.controls.each(function(element, index){
    element.addEvent('click', function(event){
        if (this.hasClass('h-inactiveslideshowcontrol')) {
            alert(index);
        }
    });
});