特定の月の日数を取得したい | 日付・時間操作 | JavaScript 目的別リファレンス

現在作成中です。今後加筆修正してまいります。
スポンサーリンク

このプログラムでは、getDate()メソッドを使用して、指定された月の日数を取得します。

スポンサーリンク

使用するメソッド: getDate()

getDate()メソッドは、日付オブジェクトの「日」を取得します。月の最終日を取得するためには、次の月の0日目(前月の最終日)を指定します。

特定の月の日数を取得するプログラム

以下のコードでは、2024年2月の日数を計算して表示しています。

HTMLとJavaScriptコード

<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>特定の月の日数を取得する方法</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            padding: 20px;
        }
        pre {
            background: #f4f4f4;
            border-left: 3px solid #ccc;
            padding: 10px;
            margin: 20px 0;
        }
    </style>

    <script>
        window.onload = function() {
            // 特定の月の日数を取得する関数
            function getDaysInMonth(year, month) {
                return new Date(year, month + 1, 0).getDate(); // 次の月の0日目 = その月の最終日
            }

            // 例: 2024年2月の日数を取得
            const year = 2024;
            const month = 1; // 2月は0から始まるインデックスで1
            const daysInMonth = getDaysInMonth(year, month);

            // 結果をHTMLに表示
            document.getElementById('daysInMonth').textContent = `${year}年2月は${daysInMonth}日間です。`;
        }
    </script>
</head>
<body>

    <h1>特定の月の日数を取得する方法</h1>

    <div id="daysInMonth"></div>

</body>
</html>

プログラムの解説

このプログラムでは、Dateオブジェクトを使い、指定された月の日数を計算しています。次の月の0日目を使うことで、その月の最終日を簡単に取得できます。

Dateオブジェクト メソッドの機能一覧

Dateオブジェクト メソッドの機能一覧 | JavaScript リファレンス
JavaScriptのDateオブジェクトは、日時を操作するために使用されるオブジェクトです。以下に、Dateオブジェクトのメソッドを種類ごとにアルファベット順にまとめています。 Dateオブジェクトのインスタンスメソッド メソッド名 説明と注意点 getDate() 日(1~31)を取得。 注意点: 月初や月末の値に...