私は JavaScript を学習しようとしています..そして例に従おうとしています..そして、この getElementById を正しく動作させることができません.実際の段落ではなく、警告ボックスに Null と表示されているのはなぜですか?
<html>
<head>
<script type="text/javascript">
var x = document.getElementById('excitingText');
alert(x);
</script>
</head>
<body>
<h1>This is a header!</h1>
<p id="excitingText">
This is a paragraph! <em>Excitement</em>!
</p>
<p>
This is also a paragraph, but it is not nearly as exciting as the last one.
</p>
</body>
</html>