去除字符串头尾空格或指定字符String.prototype.Trim = function (c) { if (c == null || c == "") { var str = this.replace(/^s*/, ''); var rg = /s/; ...
確定! 回上一頁