要實現按鈕置灰不可點擊,可以使用以下方法:
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。