标签:
1 <div class="main"> 2 <input id="userName" type="text" placeholder="请输入用户名"> 3 <input id="rule" type="button" value="过滤"> 4 </div>
CSS代码:
1 html,body,div,input{margin:0;padding:0;} 2 .main{width:400px;height:auto;padding:0 15px;text-align:center;} 3 .main input{width:100%;height:35px;border:none;margin-top:20px;border-radius:5px;} 4 input[type="text"]{text-align:left;padding-left:15px;box-sizing:border-box;border:1px solid blue;} 5 input[type="button"]{width:50%;background:blue;} 6 @media only screen and (max-width: 415px) { 7 .main{width:100%;box-sizing:border-box;} 8 }
js部分:
1 var userName = document.getElementById(‘userName‘), 2 rule = document.getElementById(‘rule‘), 3 regexEmpty = /^(\s|\u00A0)+|(\s|\u00A0)+$/g; 4 5 rule.onclick = function (){ 6 userName.value = userName.value.replace(regexEmpty,‘‘); //正则替换 7 console.log(userName.value); 8 }
标签:
原文地址:http://www.cnblogs.com/White-Quality/p/5484337.html