当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。