<html>
<head>
<script type="text/javascript" src="jQuery.js">
<script type="text/javascript">
x=document.getElementByTagName("p");
document.write(x.lastChild.nodeValue);
</script>
</head>
<body>
<p id="intro">Hello World 1!</p>
<p id="intro">Hello World 2!</p>
<p id="intro">Hello World 3!</p>
</body>
</html>
为什么上面的代码不起作用。我想显示 [Hello World 3!] 通过使用语句 documetn.write(x.lastChild.nodeValue()); 提前致谢...