JavaScript で日付から月名を取得する
JavaScript には、日付オブジェクトから情報を操作および取得するためのさまざまなメソッドが用意されています。一般的なタスクの 1 つは、特定の日付に関連付けられた月の名前を取得することです。この記事では、組み込みの Date オブジェクトと ECMAScript 国際化 API を使用してこの機能を実現する方法について説明します。
Date オブジェクトの使用:
var objDate = new Date("10/11/2009"); // Extract the month number (0-based) var monthNum = objDate.getMonth(); // Use an array of month names to retrieve the full name var monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; // Display the month name console.log(monthNames[monthNum]);
国際化 API の使用:
const date = new Date(2009, 10, 10); // 2009-11-10 const month = date.toLocaleString('default', { month: 'long' }); console.log(month);
この方法は詳細です洗練されており、ユーザーのロケールに基づいてローカリゼーションと書式設定のオプションが可能です。
以上がJavaScriptで日付から月の名前を取得するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。