我有一个元素的HTMLCollection。它的元素具有三个属性( class , value 和 disabled )。当我console.log
整个HTMLCollection(如console.log(collect)
中)时,所有元素都显示为具有以下三个属性中的每一个:
当我控制台登录集合中的一个项时(如console.log(collect[2])
,其中两个属性消失了:
这是我生成集合以及记录它的方式:
var collection = selects[0].children;
console.log(collection);
console.log(collection[3]);
这正是我运行此代码时显示的内容: