当前位置: 代码迷 >> JavaScript >> js除开字符串空格
  详细解决方案

js除开字符串空格

热度:280   发布时间:2013-10-01 12:15:56.0
js去掉字符串空格
//去掉前后空格
		function trim(str){   
	    	return str.replace(/^(\s|\u00A0)+/,'').replace(/(\s|\u00A0)+$/,'');   
		};

?

  相关解决方案