使用JQuery我们如何找到当前nth:child被点击的元素是什么并提醒该号码。
$('.bouncetabs a').click(function(){
alert($(this + ':nth-child'))
return false
});
显然这不起作用。我们怎么做?
答案 0 :(得分:4)
我想你想要.index method:
var selector = '.bouncetabs a';
$(selector).click(function(){
//just .index() may work too, depending on the html
alert($(this).index(selector));
return false;
});