程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> html-這個驗證跳轉總是失敗,實在不知道錯在哪,可以幫我看看嗎?

html-這個驗證跳轉總是失敗,實在不知道錯在哪,可以幫我看看嗎?

編輯:編程綜合問答
這個驗證跳轉總是失敗,實在不知道錯在哪,可以幫我看看嗎?

圖片說明



主頁登陸
<br> function check() {<br> if (document.forms(0).name.value == &quot;123&quot; &amp;&amp; document.forms(0).pw.value == &quot;123456&quot;) {<br> window.location = &quot;body.html&quot;;<br> }<br> else {<br> alert(&quot;用戶名不正確或則密碼不正確&quot;); return false;<br> }<br> }<br>

    <form name="myform" action="###" method="post" onsubmit="check()">
        <label for="name"> 賬號:</label><input type="text" size="20" value="" placeholder="請輸入賬號" name="name" id="name" /><br />
      <label for="pw" >  密碼:</label><input type="password" id="pw" name="pw" placeholder="請輸入密碼" value="" /><br />
        <input type="submit" value="登錄" /><input type="reset" value="重置" />
    </form>


最佳回答:


From 的onsubmit應該是 onsubmit="return check()"

事件裡面要返回一個布爾值

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved