如何從日期中提取月份名稱
在 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中文網其他相關文章!