Copy // This function removes all spaces at the beginning of a string String.prototype.trimLeft = function() { return this.replace(/^\s+/, ''); }; ...
確定! 回上一頁