我有一组按钮,我选择使用类名:
<button class="validator">One</button>
<button class="validator">Two</button>
<button class="validator">Three</button>
<button class="validator">Four</button>
<button class="validator">Five</button>
我知道jQuery的数组中有5个按钮,因为:
$(".validator").length;
// returns 5
比如说我单击按钮“Three”,如何在数组中得到它的索引(在这个例子中是2)?
答案 0 :(得分:2)
答案 1 :(得分:0)
$('button').on('click', function() {
console.log($(this).index());
});
答案 2 :(得分:0)
试试这个
jQuery(function(){
jQuery('.validator').click(function(i){
console.log(jQuery(this).index());
});
})