Date.prototype.toDateString()

Date 实例的 toDateString() 方法返回一个字符串,表示在本地时区中解释的该日期的日期部分。

¥The toDateString() method of Date instances returns a string representing the date portion of this date interpreted in the local timezone.

Try it

语法

¥Syntax

js
toDateString()

参数

¥Parameters

没有任何。

¥None.

返回值

¥Return value

表示给定日期的日期部分的字符串(请参阅格式说明)。如果日期是 invalid,则返回 "Invalid Date"

¥A string representing the date portion of the given date (see description for the format). Returns "Invalid Date" if the date is invalid.

描述

¥Description

Date 个实例指的是特定时间点。toDateString() 解释本地时区中的日期并将日期部分格式化为英语。它始终使用以下格式,并用空格分隔:

¥Date instances refer to a specific point in time. toDateString() interprets the date in the local timezone and formats the date part in English. It always uses the following format, separated by spaces:

  1. 星期几名称的前三个字母
  2. 月份名称的前三个字母
  3. 两位数的月份日期,必要时在左侧填充零
  4. 四位数年份(至少),如有必要,在左侧填充零。可能有负号

例如:"星期四 1970 年 1 月 1 日"。

¥For example: "Thu Jan 01 1970".

  • 如果你只想获取时间部分,请使用 toTimeString()
  • 如果你想同时获取日期和时间,请使用 toString()
  • 如果要将日期解释为 UTC 而不是本地时区,请使用 toUTCString()
  • 如果你想以更用户友好的格式(例如本地化)设置日期格式,请使用 toLocaleDateString()

示例

¥Examples

使用 toDateString()

¥Using toDateString()

js
const d = new Date(0);

console.log(d.toString()); // "Thu Jan 01 1970 00:00:00 GMT+0000 (Coordinated Universal Time)"
console.log(d.toDateString()); // "Thu Jan 01 1970"

规范

Specification
ECMAScript Language Specification
# sec-date.prototype.todatestring

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看