vue-获取当前时间并格式化

yyyy-mm-dd hh:mm:ss

Vue.prototype.getNowFormatDate = function getFormatDate() {
    var date = new Date();
    var month = date.getMonth() + 1;
    var strDate = date.getDate();
    if (month >= 1 && month <= 9) {
        month = "0" + month;
    }
    if (strDate >= 0 && strDate <= 9) {
        strDate = "0" + strDate;
    }
    var currentDate = date.getFullYear() + "-" + month + "-" + strDate
            + " " + date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds();
    return currentDate;
};

猜你喜欢

转载自blog.csdn.net/qq_34182705/article/details/107283685
今日推荐