码迷,mamicode.com
首页 > 其他好文 > 详细

表单验证必须为6-12位英文字母去除首尾空格

时间:2015-04-23 12:24:02      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>网站首页</title>
    <style>

    </style>
</head>

<body>
<form action="save.php" method="post" onSubmit="return check()">
账号:<input type="text" id="account" name="account">
<input type="submit" value="提交">  
</form>
</body>
</html>
<script>
function $(id){
    return document.getElementById(id);
}
String.prototype.trim =function(){
    return this.replace(/^\s+|\s+$/g,‘‘);    
}
function check(){
    var aa=$(‘account‘);
    var ac=aa.value.trim();
    aa.value=ac;
    var p=/^[a-z]{6,12}$/i;
    if(!p.test(ac)){
        alert(‘账号必须为6-12位英文字母‘);
        aa.focus();
        return false;
    }

return true;
}




    
</script>

 

表单验证必须为6-12位英文字母去除首尾空格

标签:

原文地址:http://www.cnblogs.com/lsr111/p/4449944.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!