String.prototype.trim=function() { return this.replace(/(^\s*)|(\s*$)/g,''); } var str=" test "; alert("["+str+"]"); // [ test ] alert("["+str.trim()+"]"); // [test]
本文共 232 字,大约阅读时间需要 1 分钟。
String.prototype.trim=function() { return this.replace(/(^\s*)|(\s*$)/g,''); } var str=" test "; alert("["+str+"]"); // [ test ] alert("["+str.trim()+"]"); // [test]
转载于:https://www.cnblogs.com/zhaoweimin/p/5885837.html