javascript解決IE8一下瀏覽器不支持trim屬性的兼容性問題

if(!String.prototype.trim){

  String.prototype.trim=function(){
    return this.replace(/^\s+|\s$/g,"");
  }  
   
}

例:var str="  Hello Javascript  ";this

       str=str.trim();spa

      document.write(str);prototype

相關文章
相關標籤/搜索