码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2015-05-22 10:58:57      阅读:382      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!