1. 程式人生 > >判斷使用者名稱和密碼不能為空程式碼

判斷使用者名稱和密碼不能為空程式碼

<script language="javascript" type="">
function checkform()
{//驗證輸入資料的合法性
   if (form1.username.value=="") {
      alert("賬號不能為空。");
      form1.username.focus();
      return false;
   }
   if (form1.username.value.length<1||form1.username.value.length>18) {
      alert("賬號超出了範圍(1~18)。");
      form1.username.focus();
      return false;
   }
  if (form1.password.value=="") {
     alert("密碼不能為空。");
     form1.password.focus();
     return false;
   }
   if (form1.password.value.length<1||form1.password.value.length>18) {
      alert("密碼超出了範圍(1~18)。");
      form1.password.focus();
      return false;
   }
}
</script>