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

必须为中英文2-3个字符,自动清除首尾空格+中间空格

时间:2015-04-21 20:22:14      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

<input type="text" id="tel">
<input type="button" value="提交" onClick="check()">
<input type="submit" value="清除首尾空格">
<script>
String.prototype.trim=function () {
return this.replace(/^\s+|\s+$/g,‘‘);
}
function $ (id) {
return document.getElementById(id);
}
function check () {
var n=$ (‘tel‘).value.trim ();
$ (‘tel‘).value=n;
var p=/^([a-z]|[\u4e00-\u9fa5]){2,3}$/i;
alert(p.test(n));
}

 

<input type="button" value="提交" onClick="check()">
<input type="submit" value="清除首尾空格">
<script>
String.prototype.trim=function  () {
    return this.replace(/\s/g,‘‘);
}
function $ (id) {
    return document.getElementById(id);
}
function check () {
    var n=$ (‘tel‘).value.trim ();
    $ (‘tel‘).value=n;
    var p=/^([a-z]|[\u4e00-\u9fa5]){2,3}$/i;
    alert(p.test(n));
}


</script>

 

必须为中英文2-3个字符,自动清除首尾空格+中间空格

标签:

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

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