我正在尝试使用 getElementById() 获取元素,但即使该元素存在,它也会返回 null。我究竟做错了什么?
<html>
<head>
<title>blah</title>
<script type="text/javascript">
alert(document.getElementById("abc"));
</script>
</head>
<body>
<div id="abc">
</div>
</body>