當文字框失去焦點即進行表單驗證簡單例項

antzone發表於2017-03-10

不少的表單驗證都有這樣的功能,就是當滑鼠焦點離開文字框的時候,即刻進行合法性驗證,下面就通過一個例項簡單介紹一下如何實現此功能,程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<script type="text/javascript"> 
function onblurs(){ 
  if(myform.name.value==""){ 
    alert("姓名不得為空!"); 
  }
  else if(myform.address.value==""){ 
    alert("地址不得為空!"); 
  } 
} 
</script> </P>
<P></head>
<body>
<form name="myform"> 
<table>
  <tr> 
    <td>姓名:</td> 
    <td><input type="text" name="name"/></td> 
  </tr>
  <tr> 
    <td>地址:</td> 
    <td><input type="text" name="address"/></td> 
  </tr> 
</table>
</form> 
</body>
</html>

相關文章