// Find all posts
var posts = node.getElementsByClassName("userContentWrapper");
var post, text;
console.log(posts);
console.log(typeof(posts));
console.log(Object.keys(posts));
console.log(posts.length);
以上输出:
:(我不明白。为什么长度为0?它适用于小提琴:http://jsfiddle.net/p7yfv37s/
我还在长度后再次打印了对象,它仍显示长度:4。
答案 0 :(得分:1)
如果您将光标放在 i 图标上,您会看到仅在首次展开时才捕获HtmlCollection
状态。它在console.log
调用时不显示其状态。
很可能在加载DOM之前执行日志记录,或者通过javascript动态填充node
。 HTMLCollection
是一种 live 集合,可跟踪所有DOM更改(more info about difference between HTMLCollection
and NodeList
)