编程篇(016)-写一个 function,清除字符串前后的空格(兼容所有的浏览器)

2022-12-05 14:02:27 浏览数 (1)

参考答案:

代码语言:javascript复制
// 重写trim方法
if (!String.prototype.trim) {
    String.prototype.trim = function() {
        return this.replace(/^s /, "").replace(/s $/, "");
    };
}

// test the function
var str = " tn test string ".trim(); 
console.log(str == "test string"); // true

0 人点赞