1. 程式人生 > >寫一個function,清除字串前後的空格。(相容所有瀏覽器)

寫一個function,清除字串前後的空格。(相容所有瀏覽器)

if(!String.prototype.trim){
    String.prototype.trim=function(){
        //利用正則匹配去除字串前後空格
        return this.replace(/(^\s+)|(\s+$)/g,"");
    }
}