如何用javascript去掉字符串里的所有空格
发布时间:2016-12-30 来源:查字典编辑
摘要:这个好像只能去掉2头的空格复制代码代码如下:String.prototype.trim=function(){returnthis.repl...
这个好像只能去掉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);