要实现按钮置灰不可点击,可以使用以下方法:
document.getElementById("myButton").setAttribute("disabled", true);
document.getElementById("myButton").style.backgroundColor = "gray";
document.getElementById("myButton").style.cursor = "not-allowed";
document.getElementById("myButton").onclick = function() {
return false;
};
.grayButton {
background-color: gray;
cursor: not-allowed;
}
document.getElementById("myButton").classList.add("grayButton");
无论使用哪种方法,都需要将按钮的id设置为"myButton",或者根据需要更改代码中的按钮id。