希望这是一个快速修复。我有一个可以正常工作的抛硬币生成器(耶!)但我希望能够多次点击翻转按钮并运行该功能,而无需重新加载和刷新页面。
var randomNumber = Math.floor(Math.random() * 2) + 1;
document.getElementById("flip").onclick = function(junction){
if(randomNumber == 1){
document.getElementById("response").innerHTML = "Heads!";
} else {
document.getElementById("response").innerHTML = "Tails!";
}
}
<!DOCTYPE html>
<html>
<head>
<title>Heads or Tails</title>
</head>
<body>
<h1>Will it be heads or tails?</h1>
<h3 id="response"></h3>
<button id="flip" type="button">Let's Flip!</button>
</body>
<script src="app.js"></script>
</html>