tft每日頭條

 > 生活

 > js怎麼轉成日期

js怎麼轉成日期

生活 更新时间:2024-11-30 09:48:44

js怎麼轉成日期?/** * 日期格式化,接下來我們就來聊聊關于js怎麼轉成日期?以下内容大家不妨參考一二希望能幫到您!

js怎麼轉成日期(js時間轉化格式)1

js怎麼轉成日期

/**

* 日期格式化

* @param {時間對象} date

* @param {字符串} str

* @param {布爾值} isTime

* @param {tiemStr} str

*/

function formatDate(date, isTime = false, str = '-', tiemStr = ':'){

date = new Date(date)

let Y = date.getFullYear()

let M = (date.getMonth() 1) < 10 ? '0' (date.getMonth() 1) : date.getMonth() 1

let D = date.getDate() < 10 ? '0' date.getDate() : date.getDate()

if(isTime){

let h = date.getHours() < 10 ? '0' date.getHours() : date.getHours()

let m = date.getMinutes() < 10 ? '0' date.getMinutes() : date.getMinutes()

let s = date.getSeconds() < 10 ? '0' date.getSeconds() : date.getSeconds()

return Y str M str D ' ' h tiemStr m tiemStr s

}

return Y str M str D

}

export { formatDate}

,

更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!

查看全部

相关生活资讯推荐

热门生活资讯推荐

网友关注

Copyright 2023-2024 - www.tftnews.com All Rights Reserved