【2-1】アラート応用計算
間違い時の追加分岐コード
//答え分岐(間違いの選択肢追加)
function answer2(){
answer = window.prompt(item1 + " + " + item2 + " = ?", "");
if(answer == kotae){
alert('正解! 次の問題へ...');
window.location.replace("./index.php");
}
else if(answer != "" && answer != null){
alert('残念。間違いです。');
var next = confirm('次の問題へ進みますか?');
if(next) {
window.location.replace("./index.php");
} else {
alert('再度、挑戦して下さい!');
}
}else {
alert('キャンセルされました');
}
}
赤ラインが追加箇所になります。
JavaScript練習サイトのコード②20200210