📌  相关文章
📜  javascript 获取当前日期格式 dd mm yyyy hh mm ss - Javascript (1)

📅  最后修改于: 2023-12-03 15:01:46.043000             🧑  作者: Mango

Javascript 获取当前日期格式 dd mm yyyy hh mm ss

在Javascript中,我们可以通过Date对象获取当前日期及对应的格式,常见的格式包括dd/mm/yyyy、yyyy-mm-dd、yyyy-mm-dd hh:mm:ss等,本文将介绍如何使用Javascript获取当前日期格式为dd mm yyyy hh mm ss。

获取当前日期

我们可以通过new Date()获取当前日期,如下所示:

const currentDate = new Date();
获取当前日期格式为dd mm yyyy hh mm ss

首先,我们需要使用Date对象的各种方法获取当前日期及对应的年、月、日、时、分、秒信息。获取日期信息的方法如下:

const year = currentDate.getFullYear(); // 获取当前年份
const month = currentDate.getMonth() + 1; // 获取当前月份,getMonth方法返回的月份从0开始,所以需要加1
const day = currentDate.getDate(); // 获取当前日期

获取时间信息的方法如下:

const hours = currentDate.getHours(); // 获取当前小时
const minutes = currentDate.getMinutes(); // 获取当前分钟
const seconds = currentDate.getSeconds(); // 获取当前秒数

接下来,我们将日期信息和时间信息组合成需要的格式,代码如下:

const formattedDate = `${day} ${month} ${year} ${hours} ${minutes} ${seconds}`;
console.log(formattedDate); // 输出例子:22 6 2021 14 32 15
完整代码
const currentDate = new Date();

const year = currentDate.getFullYear();
const month = currentDate.getMonth() + 1;
const day = currentDate.getDate();

const hours = currentDate.getHours();
const minutes = currentDate.getMinutes();
const seconds = currentDate.getSeconds();

const formattedDate = `${day} ${month} ${year} ${hours} ${minutes} ${seconds}`;
console.log(formattedDate); // 输出例子:22 6 2021 14 32 15

以上就是如何使用Javascript获取当前日期格式为dd mm yyyy hh mm ss的方法。