- MomentJS 教程
- MomentJS - 主页
- MomentJS - 概述
- MomentJS - 环境设置
- MomentJS - 介绍
- MomentJS - 解析日期和时间
- MomentJS - 日期验证
- MomentJS - 获取器/设置器
- 操作日期和时间
- 格式化日期和时间
- MomentJS - 日期查询
- MomentJS - 国际化
- MomentJS - 自定义
- MomentJS - 持续时间
- MomentJS - 实用程序
- MomentJS - 插件
- MomentJS - 示例
- MomentJS 有用资源
- MomentJS - 快速指南
- MomentJS - 有用资源
- MomentJS - 讨论
MomentJS - 天数
此方法可获得持续时间中的天数。返回的值为 0-30。moment.duration().asDays()可获得指定持续时间中的天数。
语法
moment.duration().days(); moment.duration().asDays();
示例
var d = moment.duration(500, "days").days(); var asdays = moment.duration(500, "days").asDays();
输出
momentjs_durations.htm
广告