HTMLCollection循环

时间:2018-09-12 08:05:48

标签: javascript for-loop htmlcollection

我在HTMLCollection上有一个循环问题,我想得到孩子,但它返回为“未定义” ...:

var thumb = document.getElementsByTagName('pi-elem-search'),
    tc = document.getElementsByClassName('taskCard'),
    mutationConfig = { childList: true };

console.log(thumb);

console.log(thumb[0]);

for (var i=0; i < thumb.length; i++) {
    console.log(thumb[i]);
};

console.log()的结果:

########################################## START ################################################
HTMLCollection []
0: pi-elem-search.ng-isolate-scope
length: 1
__proto__: HTMLCollection

undefined
########################################## END ################################################

0 个答案:

没有答案