这似乎应该是非常基本的,我无法弄清楚它为什么不起作用。到目前为止,我有一个超级简单的页面,我想用JS选择段落:
这是我的HTML:
<!DOCTYPE html>
<html>
<head>
<script src="misc.js" type="text/javascript"></script>
</head>
<body>
<p id="first">Just one paragraph.</p>
<p id="second">Two, actually.</p>
</body>
</html>
我的JS:
var paras = document.getElementsByTagName('p');
console.log(paras.length);
我希望控制台日志显示2
,但我看到0
。我非常仔细地阅读了the documentation,我无法弄清楚我在这里做错了什么。