1. 首页
  2. 云计算
  3. 微服务
  4. js格式化时间的简单实例

js格式化时间的简单实例

上传者: 2020-12-17 18:53:27上传 PDF文件 17.06KB 热度 20次
Date.prototype.format = function(format) { //author: meizz let o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "H+": this.getHours(), //小时 "m+": this.getMinutes(), //分 "s+": this.getSeconds(), //秒 "q+": Math.floor((this.getMonth() + 3) / 3), //季度 "f+": this.getMilliseconds()
用户评论