我在这里使用以下函数将某些按钮的value属性重置为0:
ShiftRight
这个功能没有按照我想要的方式进行,而且我在哪里出错了...
答案 0 :(得分:1)
你应该分配它,而不是比较。
function resetAll() {
var getAllButttons = document.getElementsByClassName("click-button");
for (i = 0; i < getAllButtons.length; i++) {
// getAllButtons[i].value == 0; // Here you're comparing it
getAllButtons[i].value = 0;
}
}