Json 返回日期格式转换

Json 返回日期格式转换
 //日期转换
        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();

                var hour = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();

                var minute = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();

                var second = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();

                return date.getFullYear() + "-" + month + "-" + currentDate + " " + hour + ":" + minute + ":" + second;

            }
        }
Json 返回日期格式转换

Json 返回日期格式转换,布布扣,bubuko.com

Json 返回日期格式转换

上一篇:java处理高并发高负载类网站的优化方法


下一篇:在.Net中进行跨线程的控件操作(上篇:Control.Invoke)