HTML jsp 登陸界面

<html>
 <head>
  <title>
   登陸界面
  </title>
  <meta http-equiv="content-type" content="text/html;charset=gb2312">
 </head>
 <body background="D:\\資料\\8.jpg">
  <form action="01.html" method="post" onSubmit="return checkForm()">
   <table width="750" align="center">
    <tr>
     <td colspan="2" align="center">用戶註冊</td>
    </tr>
    
    <tr>
     <td>用戶名: </td>
     <td>
      <input type=text name="username" value="" size="30" maxlength="10">
     </td>
    </tr>
    <tr>
     <td>密 碼: </td>
     <td>
      <input type=password name="pwd" id="input1" size="30" maxlength="12">
     </td>
    </tr>
    <tr>
     <td>密碼確認:</td>
     <td>
      <input type=password name="pwd2" value="" id="input2" size="30" maxlength="12">
     </td>
    </tr>    

    <tr>
     <td colspan="2" align="center">
      <input type="submit" value="登陸" onclick="check()">
      <input type="reset" value="重置">
     </td>
    </tr>
   </table>
  </form>
  
   <script  language="javascript">
   

function   GoTo(){  
     location.href="js.html";  
}  
      


    function check()
    {
     with(document.all){
      if(input1.value!=input2.value)
      {
       alert("兩次密碼輸入不一致,請重新輸入");
       input1.value = "";
       input2.value = "";
       GoTo();
       //window.location.replace('js.html');
       //window.location.reload();
      }
     }
    }
    
   </script>
  
 </body>
</html>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章