当前位置: 代码迷 >> JavaScript >> JS 除去左右空格
  详细解决方案

JS 除去左右空格

热度:465   发布时间:2012-10-29 10:03:53.0
JS 去除左右空格
//去除左右空格
String.prototype.trim = function(){
    return this.replace(/(^\s*)|(\s*$)/g,"");
}
  相关解决方案