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

JS 日期转字符串

时间:2019-12-18 13:10:09      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:cti   article   gets   func   for   https   ace   需要   数字   

来源地址:https://www.jb51.net/article/165003.htm

// 格式化日期,如月、日、时、分、秒保证为2位数
function formatNumber (n) {
 n = n.toString()
 return n[1] ? n : 0 + n;
}
// 参数number为毫秒时间戳,format为需要转换成的日期格式
function formatTime (number, format) {
 let time = new Date(number)
 let newArr = []
 let formatArr = [Y, M, D, h, m, s]
 newArr.push(time.getFullYear())
 newArr.push(formatNumber(time.getMonth() + 1))
 newArr.push(formatNumber(time.getDate()))
 
 newArr.push(formatNumber(time.getHours()))
 newArr.push(formatNumber(time.getMinutes()))
 newArr.push(formatNumber(time.getSeconds()))
 
 for (let i in newArr) {
  format = format.replace(formatArr[i], newArr[i])
 }
 return format;
}

调用:

var a=new Date() ; 
//传入格式为数字类型
formatTime(a.getTime(),Y-M-D h:m:s)

JS 日期转字符串

标签:cti   article   gets   func   for   https   ace   需要   数字   

原文地址:https://www.cnblogs.com/Alex-Mercer/p/12059111.html

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