下記ソースにて、alert("入力okです。");まで実行されているのは確認できるのですが、その直ぐ後に
あるwindow.location.href="luck_login.php"分が実行されません。
どなたかお分かりになる方、教授下さい。よろしくお願い致します。
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>T&E合同会社 就労継続支援A型事業所 楽(ラック)</title> <style type="text/css"> ~ 略 ~ </style> <script language="javascript" type="text/javascript"> function checkStr(){ ~ 略 ~ } function checkMail(){ ~ 略 ~ } function check_kuhaku(){ var str1 = document.getElementById("userid").value; var str2 = document.getElementById("password").value; if((!str1)||(!str2)){ alert("必須項目に空欄があります。"); return false; }else{ alert("入力okです。"); e.preventDefault(); window.location.href="luck_login.php" return false; } } </script> </head> <body> <div align="center"> <img src="ラックロゴ.png"></br> <p></p> <form method="post"> <div class="s14">ログインID</div> <input type="text" id="userid" name ="userid" size="25" onchange="checkMail()"/> <div class="s14">パスワード</div> <input type="password" id="password" name ="password" size="25" onchange="checkStr()"/> </form> <div align="center"></div><br/><p></p> <a style="text-decoration:none;"> <button class="button" input type="button" onclick="check_kuhaku()"> ログイン</button></a></br> <a href="menber_registration.html" style="text-decoration:none;"> <button class="button">新規登録</button></a></br> </div> </div> </body> </html>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/23 11:43 編集
2019/11/23 19:11