0
我想訪問根元素的子節點,但我無法這樣做,因爲返回的元素都是「未定義的」 - 包括返回的數組。如何訪問根元素的子節點?
<html>
<head>
<script>
function dothis()
{
var elements = document.getElementsByTagName("body").parentNode.childNodes;
alert(elements.length);
}
</script>
</head>
<body onload="dothis();">
<p>Welcome</p>
<ul>
<li>hello</li>
</ul>
</body>
</html>