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

js时间格式化

时间:2017-08-12 16:11:16      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:style   color   格式   date   blog   min   时间格式   ber   orm   

// 格式化时间
function formatTime(date) {
  //获取年月日
  var year = date.getFullYear()
  var month = date.getMonth() + 1
  var day = date.getDate()

  //获取时分秒
  var hour = date.getHours()
  var minute = date.getMinutes()
  var second = date.getSeconds();

  //格式化日期
  return [year, month, day].map(formatNumber).join(‘/‘) + ‘ ‘ + [hour, minute, second].map(formatNumber).join(‘:‘)
}

// 格式化数字
function formatNumber(n) {
  n = n.toString()
  return n[1] ? n : ‘0‘ + n
}

 

js时间格式化

标签:style   color   格式   date   blog   min   时间格式   ber   orm   

原文地址:http://www.cnblogs.com/hcxy/p/7350368.html

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