zoukankan      html  css  js  c++  java
  • js时间戳与日期格式的相互转换

    1. 将时间戳转换成日期格式:

    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

    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

    以上三种获取方式的区别:

      第一、第二种:会精确到毫秒

      第三种:只能精确到秒,毫秒用000替代

      以上三个输出结果可观察其区别

      注意:获取到的时间戳除以1000就可获得Unix时间戳,就可传值给后台得到。

    3:判断是否为今天

    function(timestamp) {
        if (new Date(timestamp).toDateString() === new Date().toDateString()) {
              //今天
        }  else {
            //今天之前   
        } 
    }
  • 相关阅读:
    BZOJ 1907: 树的路径覆盖
    BZOJ 1295: [SCOI2009]最长距离
    BZOJ 1303: [CQOI2009]中位数图
    BZOJ 1468: Tree
    BZOJ 3784: 树上的路径
    BZOJ 2006: [NOI2010]超级钢琴
    BZOJ 1831: [AHOI2008]逆序对
    BZOJ 2521: [Shoi2010]最小生成树
    HDU 6685 Rikka with Coin (枚举 思维)
    HDU 6659 Acesrc and Good Numbers (数学 思维)
  • 原文地址:https://www.cnblogs.com/wei-dong/p/8796762.html
Copyright © 2011-2022 走看看