How to get index of clicked element in Mootools

北慕城南 提交于 2019-12-13 16:35:27

问题


how to get index of element in Mootools like in jQuery. For example:

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

How to get index of clicked element?


回答1:


Loop through the element collection first.

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


来源:https://stackoverflow.com/questions/8123650/how-to-get-index-of-clicked-element-in-mootools

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!