首页 > 编程知识 正文

前端获取当前时间格式化,js格式化时间字符串

时间:2023-05-03 10:01:37 阅读:259084 作者:930

JS获取当前时间并格式化

formatter (thistime, fmt) { let $this = new Date(thistime) 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), 'S': $this.getMilliseconds() } if (/(y+)/.test(fmt)) { fmt = fmt.replace(RegExp.$1, ($this.getFullYear() + '').substr(4 - RegExp.$1.length)) } for (var k in o) { if (new RegExp('(' + k + ')').test(fmt)) { fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length))) } } return fmt },

调用(获取当前日期并且格式化)

this.formatter(new Date(), 'yyyy-MM-dd hh:mm:ss')

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。