<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>
上記のコードが機能しないのはなぜですか。ステートメントdocumetn.write(x.lastChild.nodeValue());を使用して、[Hello World 3!]を表示したいと思います。前もって感謝します...