jquery 去空格方法示例

发布时间:2020-06-13编辑:脚本学堂
有关jquery 去除空格的方法,jquery 去空格一般使用 trim()方法,jquery内置的标准去空格方法,需要的朋友参考下。

jquery中使用 trim() 方法同时去掉字符串首位空格
 

var str=' hello  ';
str = $.trim(str);

以上代码中,str首尾空格均可去掉了,当然也可以使用正则替换的方式去除空格。

例如:
 

复制代码 代码示例:
var str=' hello ';
function ltrim(s){
return s.replace( /^/s*/, "");
}
 
function rtrim(s){
return s.replace( //s*$/, "");
}
 
function trim(s){
return rtrim(ltrim(s));
}
 
str = ltrim(str);//去左空格;
str = rtrim(str);//去右空格;
str = trim(str);//去左右空格;