码迷,mamicode.com
首页 > 其他好文 > 详细

将Date(...)转换成yyyy-mm-dd

时间:2014-07-31 12:44:06      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:io   for   art   cti   ar   new   type   ef   

//yyyy-mm-dd

function ChangeDateFormat(time) {

    if (time != null) {

        var date = new Date(parseInt(time.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;

    }

return "";

}

//yyyy-mm-dd-hh-mm-ss

 //将/Date(...)/转换成yyyy-mm-dd     function ChangeDateFormats(time) {         if (time != null) {             var date = new Date(parseInt(time.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;*/             var now = new Date().format("yyyy-MM-dd hh:mm:ss", date);             return now;         }         return "";     }

    //转换日期格式     Date.prototype.format = function (format, date) {         /*         * eg:format="YYYY-MM-dd hh:mm:ss";         */         var o = {             "M+": date.getMonth() + 1, // month              "d+": date.getDate(), // day              "h+": date.getHours(), // hour              "m+": date.getMinutes(), // minute              "s+": date.getSeconds(), // second              "q+": Math.floor((date.getMonth() + 3) / 3), // quarter              "S": date.getMilliseconds()             // millisecond          }

        if (/(y+)/.test(format)) {             format = format.replace(RegExp.$1, (date.getFullYear() + "").substr(4 - RegExp.$1.length));         }

        for (var k in o) {             if (new RegExp("(" + k + ")").test(format)) {                 format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length));             }         }         return format;     }

将Date(...)转换成yyyy-mm-dd,布布扣,bubuko.com

将Date(...)转换成yyyy-mm-dd

标签:io   for   art   cti   ar   new   type   ef   

原文地址:http://www.cnblogs.com/huweijun/p/3880190.html

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