得到后台从数据库中拿到的数据我们希望格式是

                2016年10月25日 17时37分30秒 或者 2016/10/25 17:37:30

然而我们前台得到的却是一段数字(时间戳,毫秒数)

                1477386005

我们要将时间戳转化为我们想要的格式。

核心方法 :

1477386005是我从后台得到时间戳  (注意:有的时候得到的时间戳是已经乘以1000的)
var unixTimestamp = new Date( 1477386005*1000 ) ;
commonTime = unixTimestamp.toLocaleString();
alert(commonTime);

这时候的结果是:

    

但是我希望转换为我自己想要的格式,就在本页面重写一下  toLocaleString()方法即可。

Date.prototype.toLocaleString = function() {
return this.getFullYear() + "年" + (this.getMonth() + 1) + "月" + this.getDate() + "日 " + this.getHours() + "点" + this.getMinutes() + "分" + this.getSeconds() + "秒";
};

  结果为:

    

或者其他想要的格式:

Date.prototype.toLocaleString = function() {
return this.getFullYear() + "/" + (this.getMonth() + 1) + "/" + this.getDate() + "/ " + this.getHours() + ":" + this.getMinutes() + ":" + this.getSeconds();
};

    结果为:

    


友情链接:http://unixtime.51240.com/       时间戳转化网站

http://www.w3school.com.cn/jsref/jsref_toLocaleString.asp     w3cschool

最新文章

  1. C和指针 第十五章 错误报告perror和exit
  2. Nancy之区域和分部视图的使用
  3. Javascript中的apply与call详解
  4. .net之工作流工程展示及代码分享(一)工作流表单
  5. MySQL中函数CONCAT及GROUP_CONCAT
  6. 敏捷开发方法-Scrum
  7. Oracle+Jsp分页
  8. fir.im Weekly - iOS/Android 应用程序架构解析
  9. Android开发常见错误及技巧
  10. Popwindow
  11. Windows - 子系统(subsystem)错误
  12. (原)torch的apply函数
  13. 【南阳OJ分类之语言入门】80题题目+AC代码汇总
  14. linux学习之(六)-主机名、网络IP的配置与查看
  15. day001-html知识点总结(-)块级。行内元素区分
  16. bzoj 3331: [BeiJing2013]压力
  17. 解决 axios 返回空对象的问题
  18. vs中添加库文件WinMM.Lib
  19. Gogs 部署安装(Linux)
  20. RabbitMQ入门-路由-有选择的接受消息

热门文章

  1. 在PHP中使用CURL
  2. Centos下安装Mongodb
  3. 读取excel数据,并统计输出Frame版本
  4. ASP.NET Misconfiguration: Debug Information
  5. win10使用技巧
  6. {ICIP2014}{收录论文列表}
  7. calculator
  8. 【工作笔记】BAT批处理学习笔记与示例
  9. Sharif University CTF 2016 -- Android App
  10. sql查询当天,一周,一个月数据的语句