我正在尝试使用该setTimeout函数创建一个rollthedice函数,但我有 10 个数字而不是 6 个。
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Roll Dice</title>
<style>
button {
padding: 16px 24px;
}
</style>
</head>
<body>
<button class="roller" onclick="rollTheDice()">Roll</button>
<h2 class="number">0</h2>
</body>
<script>
function rollTheDice() {
var x = Math.floor(Math.random()*10)
document.querySelector(".number").innerHTML = x;
setTimeout(rollTheDice, 1000);
}
</script>
</html>
这进入了无限循环。
慕娘9325324
慕莱坞森
波斯汪
相关分类