论坛首页 Web前端技术论坛

表单验证的多种方式

浏览 2658 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (1)
作者 正文
   发表时间:2013-11-28  
<script type="text/javascript">
//表单验证方法一
var $=function(id){
return document.getElementById(id);
     }
    function check(){
          if(!$('form1').xm.value){
      alert('姓名不能为空');
$('name').focus();
return false;
   }
     }
</script>

<form  id='form1' name='myform' method="post" onSubmit="return check(this)">
姓名:<input type="text" id='name' name='xm' >
        <input type="submit" value="submit">
</form>
__ __ __ __ __ _ __ _ _ ___ ____ ______ _____ _____ ________ __ _____ ___
<form  id='form1' name='myform' method="post" >
姓名:<input type="text" id='name' name='xm' >
        <input type="button" value="button" id='btn'>
</form>
<script type="text/javascript">
//表单验证二
var $=function(id){
return document.getElementById(id);
}

$('btn').onclick=function(){
if(!$('form1').xm.value){
alert('姓名不鞥为空');
$('name').focus();
return false;
}
$('form1').submit();
}


</script>

谢谢各位观看,技术交流qq:905766491
   发表时间:2013-12-03  
iteye不行了。
0 请登录后投票
   发表时间:2013-12-12  
怎么了?你都在哪些网站上发表文章,或者你经常去的网站有哪些?
0 请登录后投票
论坛首页 Web前端技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics