gpt4 book ai didi

javascript - documentElement 没有子元素

转载 作者:行者123 更新时间:2023-11-28 00:46:06 25 4
gpt4 key购买 nike

var element = new DOMParser().parseFromString('<foo><bar></bar></foo>', 'application/xml').documentElement;
var children = element.children;
document.write('' + element);
document.write('' + children);

在 Chrome 和 Firefox 中,我看到“[object Element][object HTMLCollection]”。

但在 IE 9-11 中,我看到“[object Element]未定义”。

为什么documentElement没有子元素?

在 IE 9+(以及 Chrome 和 FF)中获取元素的所有子元素的最佳方法是什么?

最佳答案

我推荐的最直接的方法是在元素的子节点上使用Array.prototype.filter():

function getChildElements(element) {
return Array.prototype.slice.call(element.childNodes)
.filter(function (e) { return e.nodeType === 1; });
}

var childElements = getChildElements(element);

关于javascript - documentElement 没有子元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27360579/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com