如何使用下面的代码,只能点击按钮一次,然后才能执行任何操作。提前谢谢!
<button onClick="yumpizza();"style="position:absolute; TOP:120px; LEFT:350px">Roll for strength</button>
<script>
var strength = Math.floor(Math.random() * 20 + 1);
function yumpizza() {
document.getElementById("pizza").innerHTML = ("Strength:" + strength)
}
</script>
答案 0 :(得分:1)
在第一次触发后,只需将元素的onclick事件设置为null:
<button id="pizzaButton" onClick="yumpizza();" style="position:absolute; TOP:120px; LEFT:350px">Roll for strength</button>
<script>
var strength = Math.floor(Math.random() * 20 + 1);
function yumpizza() {
document.getElementById("pizza").innerHTML = ("Strength:" + strength);
document.getElementById("pizzaButton").onclick = null;
}
</script>
在事件处理的注释中,最佳做法是使用addEventListener
以编程方式设置事件处理程序,而不是onclick
HTML属性。
答案 1 :(得分:0)
在yumpizza()函数中再添加一行:
document.getElementById("pizzaButton").disabled = true;
答案 2 :(得分:0)
你也可以使用jquery:
var strength = Math.floor(Math.random() * 20 + 1);
function yumpizza() {
document.getElementById("pizza").innerHTML = ("Strength:" + strength)
}
$('button').on('click', function() {
$(this).disable();
});