ボタン押下で画面遷移を行いたいのですが、画面を開いた瞬間遷移してしまい困っています。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="input2.css"> <script type="text/javascript" src="input2.js" charset="shift_jis"></script> </head> <h2>2.申し込み情報入力</h2> <body> <table > <tr> <th>コース</th> <th></th> </tr> <tr> <th></th> <th> <input type="checkbox" name="a" > A </th> </tr> <tr> <th></th> <th> <input type="checkbox" name="a" > B </th> </tr> <tr> <th></th> <th> <input type="checkbox" name="a"> C </th> </tr> <th></th> <th> <input type="checkbox" name="a"> D </th> </tr> <tr> <th></th> <th> <input type="checkbox" name="a" > E </th> </tr> <tr> <th></th> <th></th> </tr> </div <tr> <th>お支払い方法</th> <th><input type="radio" name="level" >代金引換</th> </tr> <tr> <th></th> <th><input type="radio" name="level" >コンビニ支払い</th> </tr> <tr> <th></th> <th><input type="radio" name="level" >クレジットカード</th> </tr> <tr> <td colspan="2"> <input type="button" class="button" Value="戻る" onClick="history.go(-1);"> <input type="button" class="button"Value="次へ" onClick="onload()" ></td> </tr> </table> </body> </container> </html>
window.onload = function onload(){ const course = document.getElementsByName("a"); const pay = document.getElementsByName("level"); if(course.length === 0){ alert("コースが選択されていません。"); return; } if(pay.length ===0){ alert("お支払い方法が選択されていません。"); return; } localStorage.setItem('course', course); localStorage.setItem('pay', pay); window.location.href = 'html 申し込み画面.html'; }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。