HTMLCollection元素在单独显示时会丢失属性,但在显示整个集合时可以使用

时间:2018-11-18 13:36:29

标签: javascript html dom

我有一个元素的HTMLCollection。它的元素具有三个属性( class value disabled )。当我console.log整个HTMLCollection(如console.log(collect)中)时,所有元素都显示为具有以下三个属性中的每一个:

enter image description here

当我控制台登录集合中的一个项时(如console.log(collect[2]),其中两个属性消失了:

enter image description here

这是我生成集合以及记录它的方式:

var collection = selects[0].children;
console.log(collection);
console.log(collection[3]);

这正是我运行此代码时显示的内容:

enter image description here

0 个答案:

没有答案