いつもお世話になっております。下記コード中、ID,パスワードを入力しログインを押したときwindow.location.href構文が動作しません。(新規登録の動作は問題ない)直前のalert("hello");は確認出来ていることから、確実にwindow.location.href構文までコード実行されていると思います。
何方かお分かりになるになる方、ご教授願います。よろしくお願い致します。
<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{ page_jump(); return false(); } } function page_jump(){ alert("hello"); 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> </br> <div align="center"><p></p> <a style="text-decoration:none;" onClick="check_kuhaku()"> <button class="button" type="submit">ログイン</button></a> </br> <a href="menber_registration.html" style="text-decoration:none;"> <button class="button">新規登録</button></a> </div> </body> </html>
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。