String.prototype.trim=function() { return this.replace(/(^\s*)|(\s*$)/g,‘‘);} var str=" test ";alert("["+str+"]"); // [ test ]alert("["+str.trim()+"]"); // [test]
时间: 2024-10-16 15:23:15
String.prototype.trim=function() { return this.replace(/(^\s*)|(\s*$)/g,‘‘);} var str=" test ";alert("["+str+"]"); // [ test ]alert("["+str.trim()+"]"); // [test]