gpt4 book ai didi

javascript - 通过使用在运行时构建的 id 获取子项

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

我有一个表,它的主体正在运行时使用图标添加行(删除和更新),现在我希望当我单击删除图标时,我可以通过使用 id 而不是索引来获取innerHTML。我可以使用它通过索引来获取innerHTMLevent.target.parentNode.parentElement.parentElement.children[0].innerHTML;

但我想要的是通过使用在运行时而不是在 HTML 中创建并在之前构建的子 ID 来获取子级?

任何人都可以帮我解决这个问题吗?提前致谢。

最佳答案

就这么简单;为 HTML 元素分配一个唯一的 ID,然后使用 document.getElementById('id').innerHTML 获取它

下面是一个示例。

<!DOCTYPE html>
<html>
<body>

<p id="demo">Click the button to change the color of this paragraph.</p>

<button onclick="myFunction()"><p>Try it</p></button>

<script>
function myFunction() {
var x = document.getElementById("demo").innerHTML;
console.log(x);
}
</script>

</body>
</html>

如需进一步帮助,请访问 https://www.w3schools.com/jsref/met_document_getelementbyid.asp

关于javascript - 通过使用在运行时构建的 id 获取子项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60239186/

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