//為String對象原型添加trim方法去掉字符串前後的空格Stringprototypetrim = function(){ // 用正則表達式將前後空格用空字符串替代 return thisreplace(/(^\s*)|(\s*$)/g );}
//
例子