JavaScript 获取年、月、日、时、分、秒

JavaScript 获取年、月、日、时、分、秒


// 原始日期字符串
const dateString = this.targetTime

// 将日期字符串转换为,标准日期对象
const date = new Date(dateString) // // Fri Sep 29 2023 18:20:00 GMT+0800 (中国标准时间)

// 获取年份、月份和日期
const year = date.getFullYear()
const month = (date.getMonth() + 1).toString().padStart(2, '0')
const day = date
	.getDate()
	.toString()
	.padStart(2, '0')

// 获取小时
const hours = date
	.getHours()
    .toString()
    .padStart(2, '0')

// 获取分钟
const minutes = date
	.getMinutes()
    .toString()
    .padStart(2, '0')

// // 获取秒
const seconds = date
	.getSeconds()
	.toString()
	.padStart(2, '0');

// 格式化后的日期字符串
this.targetTime = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`

你可能感兴趣的:(JS-时间相关,javascript)