forEach 不是 JavaScript 数组的函数错误第一个选项:间接调用 forEach第二个选项:使用可迭代协议
2022-08-30 00:53:47
我试图做一个简单的循环:
const parent = this.el.parentElement
console.log(parent.children)
parent.children.forEach(child => {
console.log(child)
})
但是我得到以下错误:
VM384:53 未捕获的类型错误:parent.children.forEach 不是函数
即使日志:parent.children
可能是什么问题?
注意:这是一个JSFiddle。