多次重定向讓我先說,我不是一個專家,當涉及到JavaScript的開始,但我已經做了我的研究並不能完全弄清楚,我有我的代碼做錯了什麼。對於我的網頁,我一直在編輯基本上有四種不同警報的反射相關遊戲,基於他們按下停止按鈕的速度。多個警報
這裏是我的代碼的一部分,它將顯示我的重定向頁面,我目前沒有被重定向到。無論您收到哪種警報,都會將您帶到最後一個讓我懷疑自己出錯的地方。
function remark(responseTime) {
var responseString = "";
if (responseTime < 0.20) responseString = "well done!.";
window.location.href = "dfgr454.php";
if (responseTime >= 0.20 && responseTime < 0.40) responseString = "nice.";
window.location.href = "fdkjgtry5.php";
if (responseTime >= 0.40 && responseTime < 0.60) responseString = "could be better. ";
window.location.href = "dfg5654f.php";
if (responseTime >= 0.60 && responseTime < 0.80) responseString = "that's no good.";
window.location.href = "bvcb56.php";
if (responseTime >= 0.80 && responseTime < 1) responseString = "have you been drinking?";
window.location.href = "dfgf643re.php";
if (responseTime >= 1) responseString = "did you fall asleep?";
return responseString;
}
如果有幫助(我不完全肯定會,因爲它沒有幫我),當我修改我的密碼嘗試的window.open相反,所有的人都在打開一次。有什麼辦法可以阻止這種情況發生?警報正常,但我希望他們重定向到特定的window.location我試圖與他們配對。請和謝謝你,任何建議將是完美的!
格式的代碼是否正確(){ - } – Sarath