-2
我一直在試圖爲此找到答案,但我無法真正地將其解決。 我需要JavaScript代碼來顯示一個隨機數25次,每個數字有320ms的延遲。 (忽略除//開始滾動其他的東西)以320ms的延遲顯示一個隨機數25次Js
function roll() {
var win = Math.floor(Math.random() * 25) + 0
//change the button when rolling
rollButton.disabled = true;
rollButton.innerHTML = "Rolling...";
rollButton.style.backgroundColor = "grey";
rollButton.style.color = "black"
setTimeout(unDisable, 8000)
//start roll
(insert code here)
}
謝謝如果你能幫助
您可以編寫代碼,以便它打印一個隨機數0-24到:的document.getElementById( 「dispNum」)的innerHTML – shtabbbe
完成!我已更改代碼以反映 –
非常感謝! – shtabbbe