曾南华

摘要: //js string对象扩展 (function() { // 除去两边空白 String.prototype.trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ""); }; //截取字符串了 String.prototype.cutStr = function(le... 阅读全文
posted @ 2018-07-11 11:12 啄木鸟¥ 阅读(315) 评论(0) 推荐(0) 编辑

曾南华