gpt4 book ai didi

javascript - 如何选择div下的第二个表结构?

转载 作者:行者123 更新时间:2023-11-30 10:28:51 25 4
gpt4 key购买 nike

我正在尝试选择 div 下的每一秒 table

所以我的 html 是这样的

<div class ='tableDiv'>
<table class='table'>
....
</table>

<table class='table'>
....
</table>

</div>

...other stuff...

<div class ='tableDiv'>
<table class='table'>
....
</table>

<table class='table'>
....
</table>
</div>

other stuff

<div class ='anotherTableDiv'>
<table class='table'>
....
</table>

<table class='table'>
....
</table>
</div>

我正在尝试选择“tableDiv”div 下的每隔一个表。

我试过了。

$('.tableDiv table:nth-child(even));

但它不起作用。我不能真正更改类名或添加 ID,所以有点困难。任何人都可以给我一个提示吗?非常感谢!

最佳答案

使用 jQuery 的 :even 选择器。

$('.tableDiv table:even')

关于javascript - 如何选择div下的第二个表结构?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18137160/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com