String.prototype.trim1=function(){
return this.replace(/(^\s*)|(\s*$)/g,""); };
写一个function,清除字符串前后的空格(兼容所有的浏览器)
function trim1(str){
return str.replace(/(^\s*)|(\s*$)/g,""); }
本文共 248 字,大约阅读时间需要 1 分钟。
String.prototype.trim1=function(){
return this.replace(/(^\s*)|(\s*$)/g,""); };
写一个function,清除字符串前后的空格(兼容所有的浏览器)
function trim1(str){
return str.replace(/(^\s*)|(\s*$)/g,""); }
转载于:https://www.cnblogs.com/wuqilang/p/11204675.html