将 Array.forEach 与 getElementsByClassName 结合使用
尝试使用 document.getElementsByClassName( "myclass" ).forEach 迭代 DOM 元素时,一可能会遇到错误“document.getElementsByClassName(“myclass”).forEach 不是函数。”出现这种情况是因为 getElementsByClassName 的结果不是数组,而是 HTMLCollection。
要解决此问题,必须在使用 forEach 之前将 HTMLCollection 转换为数组。这可以使用 Array.prototype.forEach.call 方法和 HTMLCollection 作为 this 值来完成:
var els = document.getElementsByClassName("myclass"); Array.prototype.forEach.call(els, function(el) { // Do stuff here console.log(el.tagName); });
或者,可以使用 [].forEach.call:
[].forEach.call(els, function (el) {...});
在ES6中,可以使用Array.from函数:
Array.from(els).forEach((el) => { // Do stuff here console.log(el.tagName); });
以上是为什么 `document.getElementsByClassName().forEach` 不起作用,如何修复它?的详细内容。更多信息请关注PHP中文网其他相关文章!