码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript获取时间戳、日期格式化

时间:2016-12-05 22:49:54      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:new   div   date()   获取   日期格式   asc   seconds   格式   function   

一、 js获取时间戳:
 
第一种方法:
var timestamp1 = Date.parse(new Date());
 
第二种方法:
var timestamp2 = (new Date()).valueOf();
 
第三种方法:
var timestamp3 = new Date().getTime();
 
alert(timestamp1);//结果:1372751992000
alert(timestamp2);//结果:1372751992066
alert(timestamp3);//结果:1372751992066
 
备注:第一种获取的时间戳是把毫秒改成000显示,第二种和第三种是获取了当前毫秒的时间戳。
 
  二、 时间戳格式化:
 
function formatDate(now) {
  var year = now.getFullYear(),
  month = now.getMonth() + 1,
  date = now.getDate(),
  hour = now.getHours(),
  minute = now.getMinutes(),
  second = now.getSeconds();
 
  return year + "-" + month + "-" + date + " " + hour + ":" + minute + ":" + second;
}
 
var d = new Date();
alert(formatDate(d));//2016-12-12 12-12-12

JavaScript获取时间戳、日期格式化

标签:new   div   date()   获取   日期格式   asc   seconds   格式   function   

原文地址:http://www.cnblogs.com/webchigan/p/6135617.html

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