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

js反序列化时间

时间:2014-06-28 17:46:58      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:blog   http   get   width   os   cti   

 var time = "/Date(1279270720000+0800)/";

var tme1 = ChangeDateFormat(time); alert(tme1);

bubuko.com,布布扣
JS方法为:
 
function ChangeDateFormat(cellval) {
    var date = new Date(parseInt(cellval.replace("/Date(", "").replace(")/", ""), 10));
    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;
}

js反序列化时间,布布扣,bubuko.com

js反序列化时间

标签:blog   http   get   width   os   cti   

原文地址:http://www.cnblogs.com/taomylife/p/3797266.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!