怎么在香港vps服务器的javaScript中去除空格

已关闭留言

香港vps服务器的javaScript中去除空格的方法有:1.使用正则表达式去除;2.使用trim()函数去除;

javaScript中去除空格的方法以下几种

1.使用正则表达式去除

1)去除左边的空格

str=str.replace( /^\s*/g, ”);

2)去除右边的空格

str=str.replace(/(\s*$)/g, “”);

3)去除两端的空格

str=str.replace(/^\s+|\s+$/g,””);

4)去除所有的空格

str=str.replace(/\s+/g,””);

2.使用trim()函数去除

javaScripttrim()函数的作用是用于去除字符串两端的空白字符。

$(function () {

var str = ” Hello world! “;

$( “#trimmed” ).html($.trim(str) );

})

输出结果为:

Hello world!