表单--验证用户是否输入
在表单中经常些必填项目,如果用户没有输入则不允许提交表单。例如在注册用户时,必须填写用户名才能提交注册信息。验证用户是否输入时,通常需要先过滤再验证(如果用户输入的都是空格就相当于没有输入)。
我们通过使用正则表达式匹配空格
var regex = /\s+/g;
调用string的replace方法清除空格
string.replace(regex,'');
创建一个去除空格的方法:
function regexEmpty(obj){
obj.value = obj.value.replace(regex,'');
}
总体代码:
HTML:
< div class= "main">
< input id= "userName" type= "text" placeholder= "请输入用户名" >
< input id= "rule" type= "button" value= "验证">
</ div>
CSS:
html,body ,div, input{margin :0; padding:0 ;}
.main{width :400px ;height: auto;padding :0 15px; text-align:center; }
.main input{width :100% ;height: 35px; border:none ;margin-top: 20px; border-radius:5 px;}
input[type ="text"] {text-align: left;padding-left :15px ;box-sizing: border-box;border :1px solid green; }
input[type ="button"] {width: 50%; background:green; }
JS:
var userName = document.getElementById('userName' ),
rule = document.getElementById( 'rule'),
deleteEmpty = null,
regex = /\s+/g;
deleteEmpty = function (obj){
obj.value = obj.value.replace(regex,'' );
if(! obj.value){
alert( '用户名不能为空' );
} else{
alert('pass');
}
}
rule. onclick = function (){
deleteEmpty(userName);
};
DEMO地址:click Me!!
点击查看更多内容
11人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦