我.index()
用来获取元素的位置。因此,默认情况下,它为第一个返回 0。有没有办法将默认值设置为 1,所以返回的索引将是 1,2,3... 而不是 0,1,2...?
<div class="tabs">
<a href="">1</a>
<a href="">2</a>
<a href="">3</a>
</div>
和 jQuery:
$(function(){
$('.tabs a').click(function(e){
var index = $('.tabs a').index(this);
console.log(index);
e.preventDefault();
});
});