Home > Web Front-end > JS Tutorial > How to Correctly Iterate Over `getElementsByClassName()` Results in JavaScript?

How to Correctly Iterate Over `getElementsByClassName()` Results in JavaScript?

Susan Sarandon
Release: 2024-12-01 06:07:13
Original
446 people have browsed it

How to Correctly Iterate Over `getElementsByClassName()` Results in JavaScript?

Error: getElementsByClassName() Result Iteration with Array.forEach

When attempting to iterate over DOM elements using getElementsByClassName() and the Array.forEach method, users may encounter an error due to the fact that getElementsByClassName() does not return an array.

The result of getElementsByClassName() is an HTMLCollection, which, in modern browsers, differs from an array. To resolve this issue, convert the HTMLCollection to an array before using forEach. This can be achieved through the following methods:

  • Using call() with Array.prototype.forEach:
var els = document.getElementsByClassName("myclass");
Array.prototype.forEach.call(els, function(el) {
  // Do stuff here
  console.log(el.tagName);
});
Copy after login
  • Using `[].forEach.call():
[].forEach.call(els, function (el) {
  // Do stuff here
  console.log(el.tagName);
});
Copy after login
  • Using `Array.from() (ES6)**:
Array.from(els).forEach((el) => {
  // Do stuff here
  console.log(el.tagName);
});
Copy after login

The above is the detailed content of How to Correctly Iterate Over `getElementsByClassName()` Results in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template