首先在你的js文件里添加这段代码: /** * 日期时间格式化方法, * 可以格式化年.月.日.时.分.秒.周 **/ Date.prototype.Format = function (formatStr) { var week = ['日', '一', '二', '三', '四', '五', '六']; return formatStr.replace(/yyyy|YYYY/, this.getFullYear()) .replace(/yy|YY/, (this.getYear() % 1…