摘要: String.prototype.startsWith = function (startStr) { var d = startStr.length; return (d >= 0 && this.indexOf(startStr) == 0) } String.prototype.endsWit 阅读全文
posted @ 2016-01-08 17:44 自然去留 阅读(324) 评论(0) 推荐(0)