javascript实现trim方法

String.prototype.trim=function()
{
        return this.replace(/(^/s*)|(/s*$)/g, "");

你可能感兴趣的:(JavaScript,function)