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

jq时间戳转化为可视化时间

时间:2017-04-27 15:38:40      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:var   cti   gets   pre   code   datetime   color   new   logs   

 1 //2016年5月21日 23:12:07
 2 function getDateTimeToDate(dt){
 3     var dateTime = new Date(dt);
 4     var date = dateTime.getFullYear() + "年" 
 5     + (dateTime.getMonth()+1) + "月" 
 6     + dateTime.getDate() + "日 "
 7     + dateTime.getHours() + ":"
 8     + dateTime.getMinutes() + ":"
 9     + dateTime.getSeconds(); 
10     return date;
11 }           

jq时间戳转化为可视化时间

标签:var   cti   gets   pre   code   datetime   color   new   logs   

原文地址:http://www.cnblogs.com/jtzfeng/p/6774303.html

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