gpt4 book ai didi

javascript - 如何禁用 javascript 中的按钮?

转载 作者:行者123 更新时间:2023-11-28 12:40:37 25 4
gpt4 key购买 nike

我有一个在开始时启用的按钮,但我想禁用它。我需要它来玩游戏。如果玩家选择玩更多游戏,则游戏会重新开始,如果没有,则应禁用“单击我”按钮。预先感谢您!

这是我的代码:

    var y;
function playAgain()
{
y=confirm("PLAY AGAIN?");

if(y==true)
{
alert("Let's play it again!");
location.reload(true);
}
else if(y==false)
{
alert("Thank you!\nSee you soon!");
document.getElementById("button").disabled="disabled";
//document.getElementById("button").disabled="true";
}
}

HTML 代码:

<body>
<input type="button" value="Click on me" onClick="playAgain()" />
</body>

最佳答案

这会起作用:

document.getElementById("button").disabled = true;

如果您的按钮实际上有 id="button":

<input id="button" type="button" value="Click on me" onClick="playAgain()"  />

要重新启用按钮设置.disabled = false;

关于javascript - 如何禁用 javascript 中的按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12648926/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com