gpt4 book ai didi

javascript - 如何从 10 个或更多 ID 中选择一个包含特定数字的 ID

转载 作者:行者123 更新时间:2023-12-01 00:50:29 25 4
gpt4 key购买 nike

我想从一堆 ID 中获取一个随机 ID

<table>
<tr id="big1>1</tr>
<tr id="big2>2</tr>
<tr id="big3>3</tr>
<tr id="big4>4</tr>
</table>

我想做一个随机数,然后得到那个id,但我不知道如何写

var x=3;
document.getElementById('big[x]');

最佳答案

您可以使用 + 形成带有字符串争用的 id:

var x = 3;
console.log(document.getElementById('big'+x));
<table>
<tr id="big1">1</tr>
<tr id="big2">2</tr>
<tr id="big3">3</tr>
<tr id="big4">4</tr>
</table>

您也可以尝试使用 Template Literals允许嵌入表达式:

var x = 3;
console.log(document.getElementById(`big${x}`));
<table>
<tr id="big1">1</tr>
<tr id="big2">2</tr>
<tr id="big3">3</tr>
<tr id="big4">4</tr>
</table>

关于javascript - 如何从 10 个或更多 ID 中选择一个包含特定数字的 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57025277/

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