时间戳转换为日期?日期转换为时间戳?如何获取当前时间?

一、日期转换为时间戳(可比较日期大小)

let startTime = new Date(this.text.beginTime.replace(/-/g, '/')).getTime();

//替换掉this.text.beginTime即可

//方法2
var date = new Date('2014-04-23 18:55:49:123');
    // 有三种方式获取
    var time1 = date.getTime();
    var time2 = date.valueOf();
    var time3 = Date.parse(date);
    console.log(time1);//1398250549123
    console.log(time2);//1398250549123
    console.log(time3);//1398250549000

二、时间戳如何转换为日期格式
function timestampToTime(timestamp) {
    
    

        var date = new Date(timestamp * 1000);//时间戳为10位需*1000,时间戳为13位的话不需乘1000

        Y = date.getFullYear() + '-';
        M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
        D = date.getDate() + ' ';
        h = date.getHours() + ':';
        m = date.getMinutes() + ':';
        s = date.getSeconds();

        return Y+M+D+h+m+s;

    }

//调用函数
    timestampToTime(1403058804);
//打印值
    console.log(timestampToTime(1403058804));//2014-06-18 10:33:24

注意:如果是Unix时间戳记得乘以1000。

三、如何获取当前时间的时间戳
Number(new Date())

new Date() 是今天
Number 是格式化成数字

猜你喜欢

转载自blog.csdn.net/weixin_46820967/article/details/126248653
今日推荐