我嘗試獲取id爲「div」的元素,但是我在firefox中得到了TypeofError,原因是什麼?如何正確獲取元素的ID?
<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>
完全無關,但我建議使用'document.querySelector( 'DIV')'代替'document.getElementsByTagName( 'DIV')[0]' – axelduch