我想获取length
返回的类名
我想向一系列按钮添加事件侦听器,它们都共享相同的类名。
removeButton = document.getElementsByClassName("removeButton");
当我这样做时,removeButton.length
我总是得到0
,但如果我这样做:
console.log(removeButton)
我可以在那里看到物品清单。
我需要长度,以便可以遍历 afor-loop
并分配事件侦听器。
似乎是什么问题?
解决方案
在尝试使用 getElementsByClassName 收集元素之前检查元素是否存在