码迷,mamicode.com
首页 > 数据库 > 详细

mysql date js data

时间:2015-10-29 16:24:29      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

   var t = "2010-06-09 13:12:01".split(/[- :]/);
                    var d = new Date(t[0], t[1] - 1, t[2], t[3], t[4],t[5]);
                    alert(d);

 

var date = new Date(‘2015-10-15T16:10:30Z‘);
                    var str1 = date.getUTCFullYear() + ‘年‘ +
                            (date.getMonth() * 1 + 1) + ‘月‘ +
                            date.getUTCDate() + ‘日‘ +
                            date.getUTCHours() + ‘时‘ +
                            date.getUTCMinutes() + ‘分‘ +
                            date.getUTCSeconds() + ‘秒‘;
                    alert(str1);

 

mysql date js data

标签:

原文地址:http://www.cnblogs.com/linbinqiang/p/4920565.html

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