gpt4 book ai didi

javascript - 遍历Html中的id

转载 作者:行者123 更新时间:2023-11-30 09:22:00 24 4
gpt4 key购买 nike

我有一个问题。我有两个不同的主 div 元素和相同的子 div 元素。

当我想得到像这样的表时

table = document.getElementById('list_table');

这是给我第一个 div 表数据,但我想要第二个 div 表信息。

谁能帮我解决这个问题。我无法更改 ID 名称。

谢谢

<div id="container_1">
<div id="my_table">
<table id = "list_table">
</table
</div>
</div>

<div id="container_2">
<div id="my_table">
<table id = "list_table">
</table
</div>
</div>

最佳答案

The id global attribute defines a unique identifier (ID) which must be unique in the whole document. source

使用类:

table = document.getElementsByClassName('list_table')[1];

关于javascript - 遍历Html中的id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51082595/

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