- MomentJS 教程
- MomentJS - 主页
- MomentJS - 概览
- MomentJS - 环境设置
- MomentJS - 简介
- MomentJS - 解析日期和时间
- MomentJS - 日期验证
- MomentJS - Getter/Setter
- 操作日期和时间
- 格式化日期和时间
- MomentJS - 日期查询
- MomentJS - 国际化
- MomentJS - 自定义
- MomentJS - 时长
- MomentJS - 实用程序
- MomentJS - 插件
- MomentJS - 示例
- MomentJS 实用资源
- MomentJS - 快速指南
- MomentJS - 实用资源
- MomentJS - 讨论
MomentJS - 当月日期
该方法将获取/设置当月日期。它接受 1-31 的输入,如果大于提供的范围,则会添加到下个月。
语法
moment().date(Number); moment().date(); moment().dates(Number); moment().dates();
示例
var m = moment().date(); // gets the current day of the month var d = moment().date(2); // sets the day of month as shown below var k = moment().date(40); //sets the day of month which is greater than the range so the output shows the next month as shown in the output
输出
momentjs_getter_setter.htm
广告