getElementsByTagName().length 返回零

发布于 2024-11-04 10:40:21 字数 497 浏览 1 评论 0原文

我正在尝试做一件简单的事情,例如:

var elements = document.getElementsByTagName("input");
console.log(elements);
console.log(elements.length);

console.log(elements) 显示包含 28 个输入元素的 NodeList,但 elements.length 始终为 0。

我也看到了这个 getElementsByTagName("div").length 对任何网页返回零 但是我不明白到底是什么发生这种情况的原因以及如何解决它。我还注意到 Firefox、IE、Chrome 上都会发生这种情况。

有人可以帮我吗?

I am trying to do a simple thing such as:

var elements = document.getElementsByTagName("input");
console.log(elements);
console.log(elements.length);

The console.log(elements) shows the NodeList containing 28 input elements, but the elements.length is always 0.

I've also seen this getElementsByTagName("div").length returns zero for any webpage however I didn't understand what exactly is the reason for it happening and how to fix it. I've also noticed that this happens on both Firefox, IE, Chrome.

Anyone could help me out?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

最后的乘客 2024-11-11 10:40:21

NodeList 是一个实时集合,非延迟脚本立即执行(请参阅脚本延迟)。

尝试一下,您就会了解会发生什么:

<html>
<head>
  <title></title>
  <style></style>
  <script type="text/javascript">
    var elements = document.getElementsByTagName("div");
    alert(elements.length); 
  </script>
</head>
<body>
  <div>1</div>
  <script type="text/javascript">
    //var elements = document.getElementsByTagName("div");
    alert(elements.length); 
  </script>
</body>
</html>

NodeList is a live collection and non-deferred scripts execute immediately (see script defer).

Try this and you will get an idea of what happens:

<html>
<head>
  <title></title>
  <style></style>
  <script type="text/javascript">
    var elements = document.getElementsByTagName("div");
    alert(elements.length); 
  </script>
</head>
<body>
  <div>1</div>
  <script type="text/javascript">
    //var elements = document.getElementsByTagName("div");
    alert(elements.length); 
  </script>
</body>
</html>
戏蝶舞 2024-11-11 10:40:21

发生这种情况是因为 JS 的异步行为。您试图在渲染之前显示元素的值。
为了避免这种情况,您可以将“async”属性添加到标记中,如下例所示:

<script type="text/javascript" src="myTag.js" async></script>

This happens because of the asynchronous behaviour of JS. You're trying to display the element's value before it is being rendered.
In order to avoid it, you could add the "async" attribute to your tag, as in the following example:

<script type="text/javascript" src="myTag.js" async></script>
清醇 2024-11-11 10:40:21

您的脚本应该具有“deter”属性来检测标签

your script should have the attribute "deter" to detect the tags

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文