去除前後(左右)空白String.prototype.trim = function() { alert(this); return this.replace(/(^[\s]*)|([\s]*$)/g, ""); } //去左 ...
確定! 回上一頁