gpt4 book ai didi

javascript - 如何正确获取元素的id?

转载 作者:搜寻专家 更新时间:2023-11-01 05:11:50 25 4
gpt4 key购买 nike

我尝试获取 id 为“div”的元素,但在 firefox 中出现 TypeofError,这是什么原因?

<script type="text/javascript">
window.onload = function (){
var oParent = document.getElementsByTagName('div')[0];
console.log(oParent);
var arr = oParent.getElementById('div');
console.log(arr);
}
</script>
<div class="test">
<div></div>
<div></div>
<div id="div"></div>
<div></div>

最佳答案

你应该替换

var arr = oParent.getElementById('div');

var arr = document.getElementById('div');

这是因为 getElementByIddocument 而不是 div 的方法。

关于javascript - 如何正确获取元素的id?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23491276/

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