摘要:
/**生成一个随机数**/ randomNum(min, max) { return Math.floor(Math.random() * (max - min) + min); }, /**生成一个随机色**/ randomColor(min, max) { var r = this.random 阅读全文
摘要:
//日期格式化function datesFormat(txt){ Date.prototype.format = function(fmt) { var o = { "M+" : this.getMonth()+1, //月份 "d+" : this.getDate(), //日 "h+" : t 阅读全文