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

时间对象常用

时间:2015-04-24 16:09:02      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

 1      月份取值:January、February、March、April、May、June、July、August、September、October、November、December
 2      时间转换公式: 
 3      天:Math.floor(t/86400)
 4      时:Math.floor(t%86400/3600)
 5      分:Math.floor(t%86400%3600/60)
 6      秒:t%60
 7      获取时间对象:new Date()
 8      getFullYear
 9      getMonth
10      getDate
11      getDay
12      getHours
13      getMinutes
14      getSeconds
15      时间戳:new Date().getTime()-返回从1970年1月1日到现在的毫秒数(UTC时间标准时间)

 

时间对象常用

标签:

原文地址:http://www.cnblogs.com/wanqiu/p/4453589.html

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