jQuery每个索引从2开始

时间:2014-07-09 16:29:12

标签: jquery

我下面的代码从1开始向上(1,2,3,4,5)等等

我怎么能这样做,所以它从2开始?即2,3,4,5

$('.section .next').each(function (index) {
    $(this).attr('href', '#' + (index + 1));
});

1 个答案:

答案 0 :(得分:1)

你得到了......差不多:)

将其设为+2而不是+1 ..因为索引从0开始。

$('.section .next').each(function (index) {
    $(this).attr('href', '#' + (index + 2));
});