console.log(element.children) 在控制台中返回 undefined [重复]

问题描述 投票:0回答:0
let xxxy = document.getElementsByClassName("is-flex-container columns-3 alignwide wp-block-post-template is-layout-flow");

console.log(xxxy.children);

我正在编辑 WordPress 主题并尝试访问 ul 元素的 li 子元素。当注销 ul 父级(如您在第一行代码中看到的那样访问)时,返回一个包含 1 个元素的节点列表,如预期的那样,注销子级会给出未定义的(最后一行)。是什么原因造成的?

javascript dom
© www.soinside.com 2019 - 2024. All rights reserved.