在 JavaScript 中获取当前日期时间有三种方法:使用 Date 对象,提供日期和时间属性,如 date.getDate()、date.getMonth() 等。使用 Date.now() 方法,返回自纪元以来的毫秒数。使用 ISO 标准格式字符串,包含年份、月份、日期、时、分、秒和毫秒时区偏移等信息。
在 JavaScript 中,获取当前日期时间有以下几种方法:
Date
对象表示一个日期和时间。可以通过以下方式创建一个新的 Date 对象:
const date = new Date();
该对象包含当前日期和时间的信息,可以通过以下属性访问:
date.getDate()
: 返回当前日期的日期(1-31)date.getMonth()
: 返回当前日期的月份(0-11)date.getFullYear()
: 返回当前日期的年份date.getHours()
: 返回当前时间的时date.getMinutes()
: 返回当前时间的分date.getSeconds()
: 返回当前时间的秒date.getMilliseconds()
: 返回当前时间的毫秒Date.now()
方法返回自纪元以来经过的毫秒数。可以通过以下方式使用它:
const msSinceEpoch = Date.now();
JavaScript 中的Date
对象可以转换为 ISO 8601 标准格式的字符串。该字符串包含以下信息:
可以使用以下语法获取 ISO 格式字符串:
const isoString = date.toISOString();
获取当前日期和时间的示例代码:
const date = new Date(); const fullDate = `${date.getDate()}/${date.getMonth() + 1}/${date.getFullYear()}`; const fullTime = `${date.getHours()}:${date.getMinutes()}:${date.getSeconds()}`; console.log(`Current date: ${fullDate}`); console.log(`Current time: ${fullTime}`);
输出:
Current date: 31/12/2023 Current time: 12:00:00
以上是js中如何获取当前日期时间的详细内容。更多信息请关注PHP中文网其他相关文章!