摘要: JS的prototype是。。。。。。实现对字符串 头和尾 空格的过滤,代码如下所示: //Trim the head and tail spaces String.prototype.Trim = function () { return this.replace(/(^\s*)|(\s*$)/g, ""); }实现对字符串 头(左侧Left) 空格的过滤, 代码如下所示: //Trim the head spaces of current string String.prototype.LTrim = function () { r... 阅读全文
posted @ 2013-01-22 20:35 Eric Sun 阅读(2164) 评论(0) 推荐(0) 编辑