我试着做一个简单的循环:
const parent = this.el.parentElement
console.log(parent.children)
parent.children.forEach(child => {
console.log(child)
})
但我得到以下错误:
Uncaught TypeError: parent.children.forEach不是一个函数
即使父母。孩子的日志:
有什么问题吗?
注:这是一个JSFiddle。
我试着做一个简单的循环:
const parent = this.el.parentElement
console.log(parent.children)
parent.children.forEach(child => {
console.log(child)
})
但我得到以下错误:
Uncaught TypeError: parent.children.forEach不是一个函数
即使父母。孩子的日志:
有什么问题吗?
注:这是一个JSFiddle。
当前回答
如果你试图像这样循环一个NodeList:
const allParagraphs = document.querySelectorAll("p");
我强烈推荐这样循环:
Array.prototype.forEach.call(allParagraphs , function(el) {
// Write your code here
})
就我个人而言,我已经尝试了几种方法,但大多数都不工作,因为我想循环一个节点列表,但这一个工作起来像一个魅力,给它一个尝试!
NodeList不是数组,但我们使用Array将其视为数组。所以,您需要知道旧的浏览器不支持它!
需要更多关于NodeList的信息?请在MDN上阅读其文档。
其他回答
如果你试图像这样循环一个NodeList:
const allParagraphs = document.querySelectorAll("p");
我强烈推荐这样循环:
Array.prototype.forEach.call(allParagraphs , function(el) {
// Write your code here
})
就我个人而言,我已经尝试了几种方法,但大多数都不工作,因为我想循环一个节点列表,但这一个工作起来像一个魅力,给它一个尝试!
NodeList不是数组,但我们使用Array将其视为数组。所以,您需要知道旧的浏览器不支持它!
需要更多关于NodeList的信息?请在MDN上阅读其文档。
的父母。children是一个HTMLCollection类数组对象。首先,您必须将其转换为一个真正的数组才能使用Array。原型的方法。
const parent = this.el.parentElement
console.log(parent.children)
[].slice.call(parent.children).forEach(child => {
console.log(child)
})
使用JSON.parse ()
str_json = JSON.parse(array);
str_json.forEach(function (item, index) {
console.log(item);
});
那是因为父母。children是一个NodeList,并且它不支持.forEach方法(因为NodeList是一个类似数组的结构,但不是数组),因此尝试先通过using将其转换为数组来调用它
var children = [].slice.call(parent.children);
children.forEach(yourFunc);
一个更简单的版本,至少你确定它可以在所有设备上工作,不需要转换和ES6:
const children = parent.children;
for (var i = 0; i < children.length; i++){
console.log(children[i]);
}
https://jsfiddle.net/swb12kqn/5/