我正在尝试访问根元素的子节点,但我无法这样做,因为返回的元素都是“未定义的”——包括返回的数组。
<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>