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

js 时间戳转为日期

时间:2015-08-08 11:50:24      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

1 function time(){    //页面时间戳转换成时间
2    $(".time").each(function(){
3         var time = $(this).text();
4         var times = new Date(parseInt(time)).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " ");      
5          $(this).text(times);
6     });
7 }

技术分享

js 时间戳转为日期

标签:

原文地址:http://www.cnblogs.com/isungge/p/4712651.html

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