相关文章推荐
坚强的罐头  ·  asp.net - How to fix ...·  1 年前    · 
安静的熊猫  ·  tokudb ...·  1 年前    · 
暴走的排球  ·  XDocReport : ...·  1 年前    · 

js 遍历对象forEach is not a function [DOM集合--类数组对象转化为数组 ]

分析: 出现这种错误原因:

原生js 获取的DOM集合是一个类数组对象,所以不能直接利用[ forEach,map ]遍历,需要进行转换为数组后,才能用数组方法遍历

错误再现:

// 这样会报错
let metaArr = document.getElementsByTagName('meta');
metaArr.forEach((item,index)=>{
    console.log(item);
let metaArr = document.getElementsByTagName('meta');
Array.prototype.forEach.call(metaArr,function (item,index) {
    console.log(item);