ごくごく当たり前すぎてわざわざ書くことないと思うメモ
function confirmDialog(){
if (window.confirm('この入力でよろしいですか?')){
location.href = "nextPage.html";
} else {
window.alert('よろしくないんですね');
}
}
JavaScriptごくごく当たり前すぎてわざわざ書くことないと思うメモ
function confirmDialog(){
if (window.confirm('この入力でよろしいですか?')){
location.href = "nextPage.html";
} else {
window.alert('よろしくないんですね');
}
}
コメント