zoukankan      html  css  js  c++  java
  • /Date(1555554794000)/ 转换为日期格式

     第一种方法

    /Date(1555554794000)/ 转换为 2019/4/18

    new Date(parseInt('/Date(1555554794000)/'.substr(6, 13))).toLocaleDateString();

    /Date(1555554794000)/ 转换为 2019/4/18 上午10:33:14

    new Date(parseInt('/Date(1555554794000)/'.substr(6, 13))).toLocaleString()

    /Date(1555554794000)/ 转换为 上午10:33:14

    new Date(parseInt('/Date(1555554794000)/'.substr(6, 13))).toLocaleTimeString()

     第二种方法

    //日期格式化
    function ChangeDateFormat(jsondate) {
        jsondate = jsondate.replace("/Date(", "").replace(")/", "");
        if (jsondate.indexOf("+") > 0) {
            jsondate = jsondate.substring(0, jsondate.indexOf("+"));
        }
        else if (jsondate.indexOf("-") > 0) {
            jsondate = jsondate.substring(0, jsondate.indexOf("-"));
        }
        var date = new Date(parseInt(jsondate, 10));
        var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
        var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
        var hours = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
        var minutes = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
        var second = date.getMilliseconds() / 1000 < 10 ? "0" + parseInt(date.getMilliseconds() / 1000) : parseInt(date.getMilliseconds() / 1000);
        return date.getFullYear() + "-" + month + "-" + currentDate + " " + hours + ":" + minutes + ":" + second;
    };
  • 相关阅读:
    51nod 1127 最短的包含字符串
    hdu 2197 本原串
    hdu 2160 母猪的故事
    hdu 2594 Simpsons’ Hidden Talents
    自旋锁原理及java自旋锁
    Java中CAS详解
    dump相关
    多线程设置线程超时思路
    kafka遗忘点
    Java 和 HTTP 的那些事(四) HTTPS 和 证书(转)
  • 原文地址:https://www.cnblogs.com/xiaonangua/p/10728487.html
Copyright © 2011-2022 走看看