如何从日期中提取月份名称
在 JavaScript 中,您可以轻松地从 Date 对象中检索月份名称。这是一个全面的指南:
使用 toLocaleString() 方法:
此方法允许您根据区域设置特定的约定将日期对象格式化为字符串。对于月份名称,请指定一个对象,并将“month”键设置为以下值之一:
示例:
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中文网其他相关文章!