js實現的驗證表單文字框和密碼框是否為空程式碼

螞蟻小編發表於2017-03-20

表單驗證幾乎是必須的功能,有些表單驗證功能很複雜,並且很絢麗,但是有些表單驗證只需要滿足簡單的驗證功能就可以了,比如驗證表單項是否為空,下面就是一段能夠實現功能的程式碼例項。

程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script type="text/javascript">
function check(form){
  if(form.userId.value=='') {
    alert("請輸入使用者帳號!");
    form.userId.focus();
    return false;
  }
  if(form.password.value==''){
    alert("請輸入登入密碼!");
    form.password.focus();
    return false;
  }
  document.myform.submit();
}
window.onload=function(){
  var theForm=document.myform;
  var bt=document.getElementById("bt"); 
  bt.onclick=function(){
    check(theForm)
  }
}
</script>
</head>
<body>
<form action="#" name="myform" method="post">
  使用者帳號:<input type="text" name="userId"/>
  登入密碼:<input type="password" name="password"/>
  <input type="button" value="登陸" id="bt"/>
</form>
</body>
</html>

以上程式碼實現了我們的要求,可以實現表單的簡單驗證,表單內容為空的時候,會彈出提示,並且使當前表單元素獲得焦點,程式碼比較簡單,這裡就不多介紹了,如有任何問題可以跟帖留言。

相關文章