當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Moment.js moment().month()用法及代碼示例


方法`moment().month()Moment.js 中的 ` 用於檢索或修改 Moment 對象的月份。值得注意的是,Moment.js 中的月份是zero-indexed。因此,月份的有效範圍為 0 到 11,其中 0 對應於 1 月,11 對應於 12 月。如果指定的值大於 11,則將滾動到下一年。

還可以使用月份的全名或簡寫字符串來設置月份。

用法:

moment().month( Number|String );

Parameters: 該方法接受如上所述和如下所述的單個參數:

  • 數字|字符串:這是必須為 Moment 對象設置的月份。它是一個可選參數。

返回值:此方法返回 Moment 的當前月份。

注意:這在普通的 Node.js 程序中不起作用,因為它需要全局安裝或在項目目錄中安裝外部moment.js 庫。

Moment.js 可以使用以下命令安裝:

moment模塊的安裝:

npm install moment

示例 1:下麵的例子將演示Moment.js moment().month()方法.

Javascript


const moment = require('moment');
console.log("Current Date:", moment().toString())
console.log("Current month is:", moment().month())
let month10 = moment().month(10);
console.log(
    "Moment with Month of 10 is:",
    month10.toString()
)
let month24 = moment().month(24);
console.log(
    "Moment with Month of 24 is:",
    month24.toString()
)

輸出:

Current Date: Wed Jul 13 2022 01:30:32 GMT+0530
Current month is: 6
Moment with Month of 10 is: Sun Nov 13 2022 01:30:32 GMT+0530
Moment with Month of 24 is: Sat Jan 13 2024 01:30:32 GMT+0530

示例 2:下麵的例子將演示Moment.js moment().month()方法.

Javascript


const moment = require('moment');
console.log("Current Date:", moment().toString())
console.log("Current month is:", moment().month())
let monthDecember = moment().month("December");
console.log(
    "Moment with Month of December is:",
    monthDecember.toString()
)
let monthFeb = moment().month("Feb");
console.log(
    "Moment with Month of Feb is:",
    monthFeb.toString()
)

輸出:

Current Date: Wed Jul 13 2022 01:30:32 GMT+0530
Current month is: 6
Moment with Month of December is: Tue Dec 13 2022 01:30:32 GMT+0530
Moment with Month of Feb is: Sun Feb 13 2022 01:30:32 GMT+0530


相關用法


注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Moment.js moment().month() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。