如何使用 JavaScript 获取特定区域的日期?

发布于 2024-08-28 22:44:30 字数 166 浏览 6 评论 0原文

我需要使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抠脚大汉 2024-09-04 22:44:30

您可以使用 toLocaleDateString

来自 MDN 文档

新的区域设置和选项参数允许应用程序指定应使用其格式约定的语言,并允许自定义函数的行为。

const event = new Date();

const options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };

console.log(event.toLocaleDateString('de-DE', options));

You can use toLocaleDateString:

From the MDN documentation:

The new locales and options arguments let applications specify the language whose formatting conventions should be used and allow to customize the behavior of the function.

const event = new Date();

const options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };

console.log(event.toLocaleDateString('de-DE', options));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文