我正在尝试使用jQuery在表格中向下移动X行...

我可以执行以下操作,并且可以正常工作。

/* Now let's move next 3 times to arrive at the foo account */
for (var rowCount = 1; rowCount <=3; rowCount++) {
    foobarRow = $(foobarRow).next('tr');
}


我知道我可以去

    foobarRow = $(foobarRow).next('tr');
    foobarRow = $(foobarRow).next('tr');
    foobarRow = $(foobarRow).next('tr');


也...

但我想知道是否还有更多的jQueryish方法来完成同一件事?

就像,我不知道,但是(完全组成jQuery语法如下)...

foobarRow = $(foobarRow).next('tr').number(3);

最佳答案

您可以按元素的索引:eq(index)进行匹配。

$("tr:eq(2)")选择第三个<tr>。注意,这是从零开始的索引。

10-07 21:19