Vue获取当前时间(年月日时分秒_yyyyMMddHHmmss)

代码实现:

    let yy = new Date().getFullYear()
    let mm = new Date().getMonth() + 1
    let dd = new Date().getDate()
    let hh = new Date().getHours()
    let mf = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes() : new Date().getMinutes()
    let ss = new Date().getSeconds() < 10 ? '0' + new Date().getSeconds() : new Date().getSeconds()

    let currentDate = yy + '' + mm + '' + dd + '' + hh + '' + mf + '' + ss

运行结果:
Vue获取当前时间(年月日时分秒_yyyyMMddHHmmss)_第1张图片

你可能感兴趣的:(前端相关问题,vue.js,chrome,前端)