首页 > Web开发 > 详细

JS非空验证

时间:2017-08-15 09:42:16      阅读:263      评论:0      收藏:0      [点我收藏+]

代码如下:

<body>
<table>
<tr>
<td>姓名:</td>
<td><input type="text" name="TrueName" id="TrueName" /></td>
</tr>

<tr>
<td colspan="2">
<input type="submit" value="submit"  onclick="return check();" />
</td>
</tr>
</table>

</body>

<script language="JavaScript">
function Check()
{
 if(document.getElementById(‘TrueName‘).value==‘‘) {
  alert(‘必须输入姓名!‘);
  document.getElementById(‘TrueName‘).focus();
  return false;
 }

 if(document.getElementById(‘Identity‘).value==‘‘) {
  alert(‘必须输入身份证号码!‘);
  document.getElementById(‘Identity‘).focus();
  return false;
 }

 if(document.getElementById(‘Tel‘).value==‘‘) {
  alert(‘必须输入联系电话!‘);
  document.getElementById(‘Tel‘).focus();
  return false;
 }

 if(document.getElementById(‘Address‘).value==‘‘) {
  alert(‘必须输入联系地址!‘);
  document.getElementById(‘Address‘).focus();
  return false;
 }

 if(document.getElementById(‘PassWord‘).value==‘‘) {
  alert(‘密码不能为空!‘);
  document.getElementById(‘PassWord‘).focus();
  return false;
 }

 if(document.getElementById(‘PassWord‘).value!=document.getElementById(‘RPass‘).value) {
  alert(‘两次输入的密码不一致!‘);
  document.getElementById(‘PassWord‘).focus();
  return false;
 }
}
</script>

<script language="JavaScript">
function Check()
{
 if(document.getElementById(‘TrueName‘).value==‘‘) {
  alert(‘必须输入姓名!‘);
  document.getElementById(‘TrueName‘).focus();
  return false;
 }

 if(document.getElementById(‘Identity‘).value==‘‘) {
  alert(‘必须输入身份证号码!‘);
  document.getElementById(‘Identity‘).focus();
  return false;
 }

 if(document.getElementById(‘Tel‘).value==‘‘) {
  alert(‘必须输入联系电话!‘);
  document.getElementById(‘Tel‘).focus();
  return false;
 }

 if(document.getElementById(‘Address‘).value==‘‘) {
  alert(‘必须输入联系地址!‘);
  document.getElementById(‘Address‘).focus();
  return false;
 }


 if(document.getElementById(‘PassWord‘).value==‘‘) {
  alert(‘密码不能为空!‘);
  document.getElementById(‘PassWord‘).focus();
  return false;
 }

 if(document.getElementById(‘PassWord‘).value!=document.getElementById(‘RPass‘).value) {
  alert(‘两次输入的密码不一致!‘);
  document.getElementById(‘PassWord‘).focus();
  return false;
 }
}
</script>

  

JS非空验证

原文:http://www.cnblogs.com/sglq/p/7363112.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!