初歩的なことだと思いますが、check is not defined at HTMLInputElement.onclick と表示され、解決策がわからず時間だけたってしまいました。よろしければどなたかご教示お願いします。
<!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"id="a" > A </th> </tr> <tr> <th></th> <th> <input type="checkbox" name="a" id="a"> B </th> </tr> <tr> <th></th> <th> <input type="checkbox" name="a"id="a"> C </th> </tr> <th></th> <th> <input type="checkbox" name="a"id="a"> D </th> </tr> <tr> <th></th> <th> <input type="checkbox" name="a" id="a"> E </th> </tr> > <tr> <th></th> <th></th> </tr> <tr> <th>お支払い方法</th> <th><input type="radio" name="level" id="level">代金引換</th> </tr> <tr> <th></th> <th><input type="radio" name="level" id="level" >コンビニ支払い</th> </tr> <tr> <th></th> <th><input type="radio" name="level"id="level" >クレジットカード</th> </tr> <tr> <td colspan="2"> <input type="button" class="button" Value="戻る" onClick="history.go(-1);"> <input type="button" class="button"Value="次へ" onClick="check();" > </td> </tr> </table> </body> </container> </html>
window.onload = function check(){ //値の取得 let course = document.getElementsByName('a'); let len = course.length; let checkValue = ''; for (let i = 0; i < len; i++){ if (course.item(i).checked){ checkValue = course.item(i).value; } } const arr1 = []; const pay = document.getElementsByName('level'); for (let i = 0; i < pay.length; i++) { if (pay[i].checked) { arr1.push(pay[i].value); } } if(course.length === 0){ alert("コースが選択されていません。"); return; } if(pay.length ===0){ alert("お支払い方法が選択されていません。"); return; } localStorage.setItem('course', course); localStorage.setItem('pay', pay); }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/11 04:18