为什么我的 for 循环只影响 getElementsByClassName NodeList 中的第一个元素?

问题描述 投票:0回答:1

我正在尝试循环遍历类

hot
的 NodeList。我想将他们的班级名称更改为
cool
。当我使用 for 循环时,第二个
<li>
似乎没有改变颜色。有谁知道我的错误是什么?

var elements = document.getElementsByClassName('hot');
var i;

for(i = 0; i < elements.length; i++) { 
  elements[i].className = 'cool';
}
*{
  box-sizing: border-box;
}
.hot {
  background-color: red;
  border: 1px solid black;
  padding: 10px;
  margin-top: 1px;
  font-size: 25px;
  list-style-type: none;
}

.cool {
  background-color: blue;
  padding: 10px;
  color: white;
  font-size: 25px;
}
<html>
  <body>
   <div id="page">
      <h1 id="header">List</h1>
      <h2>Buy Greoceries</h2>
      <ul>
         <li id="one" class="hot"><em>Fresh</em>figs</li>
         <li id="two" class="hot">pine nuts</li>
         <li id="three" class="hot">honey</li>
         <li id="four">balsamic vinegear</li>
     </ul>
   </div> 
  </body>
</html>

javascript html nodelist
1个回答
5
投票

getElementsByClassName
返回活动节点列表。一旦您更改了一个元素上的类,节点列表就会更新以反映这一点,因此您的索引将始终消失。

缓解这种情况的一种方法是使用

Array.slice.call
:

将节点列表转换为静态节点列表
var elements = [].slice.call(document.getElementsByClassName('hot'));

演示

正如您所指出的,另一种方法是使用

document.querySelectorAll
返回静态节点列表:

document.querySelectorAll('.hot');

演示

© www.soinside.com 2019 - 2024. All rights reserved.