首页 > Web开发 > 详细

Js 处理将时间转换 “年-月-日”

时间:2015-05-22 10:57:09      阅读:366      评论:0      收藏:0      [点我收藏+]

将时间

 \/Date(1432828800000+0800)\/" 

转换成:“年-月-日”

//时间转换
function ChangeDateFormat(val) {
    if (val != null) {
        var date = new Date(parseInt(val.replace("/Date(", "").replace(")/", ""), 10));
        //月份为0-11,所以+1,月份小于10时补个0
        var month = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1;
        var currentDate = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
        return date.getFullYear() + "-" + month + "-" + currentDate;
    }
    return "";
}

 

Js 处理将时间转换 “年-月-日”

原文:http://www.cnblogs.com/foreverfendou/p/4521513.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!