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
语法
参数
返回值
描述
¥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:
- 星期几名称的前三个字母
- 月份名称的前三个字母
- 两位数的月份日期,必要时在左侧填充零
- 四位数年份(至少),如有必要,在左侧填充零。可能有负号
例如:"星期四 1970 年 1 月 1 日"。
¥For example: "Thu Jan 01 1970".
- 如果你只想获取时间部分,请使用
toTimeString()
。 - 如果你想同时获取日期和时间,请使用
toString()
。 - 如果要将日期解释为 UTC 而不是本地时区,请使用
toUTCString()
。 - 如果你想以更用户友好的格式(例如本地化)设置日期格式,请使用
toLocaleDateString()
。
示例
使用 toDateString()
规范
Specification |
---|
ECMAScript Language Specification # sec-date.prototype.todatestring |
浏览器兼容性
BCD tables only load in the browser