JS时间格式化

来源:互联网 发布:晒书房 知乎 编辑:程序博客网 时间:2024/06/16 01:02
//时间格式化函数
function jsonDateFormat(jsonDate) {//json日期格式转换为正常格式
    try {
    console.log("开始格式化交易日期:"+jsonDate);
        //var date = new Date(parseInt(jsonDate.replace("/Date(", "").replace(")/", ""), 10));
    var date = new Date(parseInt(jsonDate, 10));
        var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
        var day = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
        //var hours = date.getHours();
        //var minutes = date.getMinutes();
        //var seconds = date.getSeconds();
        return date.getFullYear() + "-" + month + "-" + day;
    } catch (ex) {//出自http://www.cnblogs.com/ahjesus 尊重作者辛苦劳动成果,转载请注明出处,谢谢!
        return "";
    }