{site_name}

{site_name}

🌜 搜索

JavaScript 的 Date 对象用于处理日期和时间

前端 𝄐 0
js编程实现当前日期及时间,js日期格式转换时间戳,js日期格式转换,javascript日期加减,js日期操作,js日期方法
JavaScript 的 Date 对象用于处理日期和时间。它允许您以各种格式创建、操作和显示日期和时间。

创建一个新的 Date 对象可以使用以下几种方式:

1.使用无参构造函数,获取当前日期和时间:

let currentDate = new Date();
console.log(currentDate);
// 输出:Sat Mar 27 2023 16:06:45 GMT+0800 (中国标准时间)


2.使用传入参数的方式,创建特定的日期和时间:

let myBirthday = new Date("1990-01-01");
console.log(myBirthday);
// 输出:Mon Jan 01 1990 00:00:00 GMT+0800 (中国标准时间)


Date 对象有许多可用的方法和属性,下面是一些示例:

1. 获取日期和时间的年、月、日、时、分、秒等信息:

let currentDate = new Date();
console.log(currentDate.getFullYear()); // 年份
console.log(currentDate.getMonth()); // 月份(0表示1月)
console.log(currentDate.getDate()); // 日期
console.log(currentDate.getHours()); // 小时
console.log(currentDate.getMinutes()); // 分钟
console.log(currentDate.getSeconds()); // 秒钟


2. 格式化日期和时间:

let currentDate = new Date();
console.log(currentDate.toDateString()); // 输出类似 "Sat Mar 27 2023" 的字符串
console.log(currentDate.toLocaleString()); // 输出本地化后的日期和时间字符串


3. 操作日期和时间:

let currentDate = new Date();
currentDate.setFullYear(2022); // 将年份设置为 2022
console.log(currentDate);