簡體   English   中英

如何在Mootools中獲取點擊元素的索引

[英]How to get index of clicked element in Mootools

如何像在jQuery中一樣在Mootools中獲取元素的索引。 例如:

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

如何獲得點擊元素的索引?

首先循環遍歷元素集合。

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM