首页 >web前端 >js教程 >如何在 JavaScript 中从日期获取月份名称?

如何在 JavaScript 中从日期获取月份名称?

Susan Sarandon
Susan Sarandon原创
2024-12-03 16:06:18160浏览

How to Get Month Names from Dates in JavaScript?

如何从日期中提取月份名称

在 JavaScript 中,您可以轻松地从 Date 对象中检索月份名称。这是一个全面的指南:

使用 toLocaleString() 方法:

此方法允许您根据区域设置特定的约定将日期对象格式化为字符串。对于月份名称,请指定一个对象,并将“month”键设置为以下值之一:

  • “short” - 缩写名称(例如“Oct”)
  • ”长” - 全名(例如, "十月")

示例:

var objDate = new Date("10/11/2009");

// Get the month name in long format
const monthNameLong = objDate.toLocaleString('default', { month: 'long' });

// Get the month name in short format
const monthNameShort = objDate.toLocaleString('default', { month: 'short' });

console.log(`Long month name: ${monthNameLong}`);
console.log(`Short month name: ${monthNameShort}`);

这将输出:

Long month name: October
Short month name: Oct

以上是如何在 JavaScript 中从日期获取月份名称?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn