点击下一个链接

时间:2018-09-30 15:06:00

标签: jquery

我想点击底部 {strong> <td class="cur">旁边的分页链接。在这种情况下,“ Pg 2”。

<td class="cur"><a aria-label="Pg 1" class="pg" href=""></a></td>
<td><a aria-label="Pg 2" class="pg" href=""></a></td>

然后再次在第2页上,单击<td class="cur">旁边的链接。在这种情况下,“ Pg 3”。

<td><a aria-label="Pg 1" class="pg" href=""></a></td>
<td class="cur"><a aria-label="Pg 2" class="pg" href=""></a></td>
<td><a aria-label="Pg 3" class="pg" href=""></a></td>

以此类推。

如何在JavaScript / jQuery中实现它?

1 个答案:

答案 0 :(得分:0)

假设您的表具有ID(“ tableName”),则此方法应该可以正常工作:

var nextButton= $('#nav td.cur > a.pg')
               .parent() // go to the parent td
               .next() // vist next td sibling
               .find('a.pg'); // find a inside of this td sibling
    nextButton.trigger('click');

您可以找到触发方法in this post的示例。