码迷,mamicode.com
首页 > Web开发 > 详细

表单校验常用原生js库

时间:2017-05-26 10:43:20      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:return   ace   ret   string   空格   this   定义函数   on()   ring   

1.字符串去除左右空格
继承形式
// 除去左右空格
String.prototype.Trim = function()
{
return this.replace(/(^\s*)|(\s*$)/g, "");
}
// 除去左空格
String.prototype.LTrim = function()
{
return this.replace(/(^\s*)/g, "");
}
// 除去右空格
String.prototype.RTrim = function()
{
return this.replace(/(\s*$)/g, "");
}
自定义函数形式
// 除去左空格;
function ltrim(s){
return s.replace(/(^\s*)/g, "");
}
// 除去右空格;
function rtrim(s){
return s.replace(/(\s*$)/g, "");
}
// 除去左右空格;
function trim(s){
return s.replace(/(^\s*)|(\s*$)/g, "");
}

表单校验常用原生js库

标签:return   ace   ret   string   空格   this   定义函数   on()   ring   

原文地址:http://www.cnblogs.com/victory820/p/6906921.html

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