欢迎来到福编程网,本站提供各种互联网专业知识!

如何用javascript去掉字符串里的所有空格

发布时间:2007-02-08 作者: 来源:转载
这个好像只能去掉2头的空格复制代码代码如下:String.prototype.trim=function(){returnthis.replace(/(^*)|(*$)/g,'');}方法1:复制代码代码如下:String.prototype.mm=function(){returnthis.replace(//g,'');}方法2:复制代码代码如下:vars="asddddbbb
这个好像只能去掉2头的空格
复制代码 代码如下:
String.prototype.trim=function(){returnthis.replace(/(^s*)|(s*$)/g,'');}

方法1:
复制代码 代码如下:
String.prototype.mm=function(){returnthis.replace(/s/g,'');}

方法2:

复制代码 代码如下:
vars="asddddbbbsss";
varreg=/s/g;
varss=s.replace(reg,"");
alert(ss);

相关推荐