JavaScript40_日期的格式化
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript40_日期的格式化相关的知识,希望对你有一定的参考价值。
9、日期的格式化
toLocaleString()
- 可以将一个日期转换为本地时间格式的字符串
- 参数:
- 描述语言和国家信息的字符串 zh-CN 中文中国 zh-HK 中文香港 en-US 英文美国
- 需要一个对象作为参数,在对象中可以通过对象的属性来对日期的格式进行配置 dateStyle 日期的风格 timeStyle 时间的风格 full long medium short hour12 是否采用12小时值 true false weekday 星期的显示方式 long short narrow
year numeric 2-digit
<script>
const d = new Date()
let result = d.toLocaleDateString() // 将日期转换为本地的字符串
result = d.toLocaleTimeString() // 将时间转换为本地的字符串
result = d.toLocaleString("zh-CN",
year: "numeric",
month: "long",
day: "2-digit",
weekday: "short",
)
console.log(result)
</script>
以上是关于JavaScript40_日期的格式化的主要内容,如果未能解决你的问题,请参考以下文章
[Javascript]_[初级]_[获取日期的时间间隔-格式化日期时间]