Posted in Javascript onOctober 09, 2013
由于JS的trim方法在很多浏览器中不支持 所以在这里我们可以使用自己编写的trim方法来处理一些剪掉字符串两端的空字符串的需要 处理方法有很多种 这里我只选择一种 是经过自己测试的
String.prototype.trim = function () { return this .replace(/^\s\s*/, '' ).replace(/\s\s*$/, ''); }
自己编写的类似JS的trim方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@