美文网首页
JS时间转时间戳

JS时间转时间戳

作者: 吃肉肉不吃肉肉 | 来源:发表于2021-06-01 11:34 被阅读0次

    时间转时间戳

    将Thu Sep 20 2021 11:32:59 GMT+0800 (中国标准时间)转换为1622518379000

    console.log(Date.parse(new Date()))
    console.log(new Date().getTime()) 
    

    将"2021-06-01 11:32:59"转换为1622518379000

    var timeDate = "2021-06-01 11:32:59";
    var Time = new Date(timeDate);
    var timestemp = Time.getTime();
    console.log(timestemp)
    

    相关文章

      网友评论

          本文标题:JS时间转时间戳

          本文链接:https://www.haomeiwen.com/subject/hgswsltx.html