如何使用 JavaScript 获取特定区域的日期?
我需要使用 JavaScript 获取特定区域设置中的日期 - 不一定是用户的区域设置。我该怎么做?
我做了一些研究,发现了 date.getUTCMonth()
和 date.getUTCDate()
。我如何使用这个或其他东西来获取特定区域的日期?
I need to get the date in a specific locale using JavaScript - not necessarily the user's locale. How can I do this?
I did some research and found date.getUTCMonth()
and date.getUTCDate()
. How can I use this or something else to get the date in a certain locale?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
toLocaleDateString
:来自 MDN 文档:
You can use
toLocaleDateString
:From the MDN documentation: