2 回答

TA貢獻1757條經驗 獲得超7個贊
你的代碼有很多問題。
var round = prompt("enter text"); // how do you know the user enters a number?
var defaultNumberOfRounds = 1; // I added this row
// CHANGED THIS IN EDIT
var roundno = round; // should be: isNaN(Number(round)) ? defaultNumberOfRounds : round
var images_arr = ["../img/paper.png", "../img/stone.png", "../img/sisor.png"];
var size = images_arr.length
function myFunction() {
// CHANGED THIS IN EDIT the conditions within () should be: var i = 0; i < roundno; i++
for (var i = 0; i = roundno; i + 1) {
console.log(i);
// all iterations in the loop will execute this at the same time.
setInterval(function () {
var x = Math.floor(size * Math.random())
$('#random').attr('src', images_arr[x]); // JQuery
}, 1500);
// all iterations in the loop will execute this at the same time.
setInterval(function () {
var sound = new Audio("../audio/audio.mp3");
sound.play();
}, 3000);
if (i = roundno) { // should be i == roundno
break; // don't need to break it, because your for loop's condition should take care of this
}
}
}
} // ADDED THIS IN EDIT: missing curly bracket
[編輯] 我添加了一個片段來顯示我的代碼正在運行。我注釋了 for 循環中的所有代碼,我不得不更改roundnofor 循環中的聲明和語句。
var round = prompt("enter text");
var defaultNumberOfRounds = 1;
var roundno = isNaN(Number(round)) ? defaultNumberOfRounds : round;
var images_arr = ["../img/paper.png", "../img/stone.png", "../img/sisor.png"];
var size = images_arr.length;
console.log(`round: ${round}, roundno: ${roundno}`);
function myFunction() {
for (var i = 0; i < roundno; i++) {
console.log(i);
/*setInterval(function () {
var x = Math.floor(size * Math.random())
$('#random').attr('src', images_arr[x]); // JQuery
}, 1500);
setInterval(function () {
var sound = new Audio("../audio/audio.mp3");
sound.play();
}, 3000);*/
}
}
myFunction();

TA貢獻1824條經驗 獲得超8個贊
你沒有增加i
改變
i + 1
到以下之一:
i++
i += 1
i = i + 1
您還需要if
在循環結束時修復語句。您要檢查是否i
等于roundno
。而不是使用賦值運算符來分配to=
的值,使用or進行相等性檢查。roundno
i
==
===
if (i == roundno) { break; }
您在循環條件中也犯了同樣的錯字。將循環條件更改為i == roundno
并刪除if
循環結束時的語句,因為循環條件固定,if
循環內的語句是不必要的。
for (var i = 0; i == roundno; i++) { // code }
添加回答
舉報