如何在jQuery中获取Mootools中的元素索引。 例如:
this.controls.addEvent('click', function(event){
if (this.hasClass('h-inactiveslideshowcontrol')) {
alert(this.index);
}
});
如何获取点击元素的索引?
答案 0 :(得分:5)
首先遍历元素集合。
this.controls.each(function(element, index){
element.addEvent('click', function(event){
if (this.hasClass('h-inactiveslideshowcontrol')) {
alert(index);
}
});
});