摘要:
/** 删除数组中指定索引的数据 **/Array.prototype.deleteAt = function (index) { if (index 0) { t = Math.floor(Math.random() * me.length); tempArr[... 阅读全文
摘要:
/** 在字符串末尾追加字符串 **/String.prototype.append = function (str) { return this.concat(str);}/** 删除指定索引位置的字符,索引无效将不删除任何字符 **/String.prototype.deleteCharA... 阅读全文
摘要:
//js格式化时间//"yyyy-MM-dd hh:mm:ss"Date.prototype.format = function (format) { var date = { "M+": this.getMonth() + 1, "d+": this.getDat... 阅读全文