- MomentJS 教程
- MomentJS - 首页
- MomentJS - 概览
- MomentJS - 环境设置
- MomentJS - 简介
- MomentJS - 解析日期和时间
- MomentJS - 日期验证
- MomentJS - Getter/Setter
- 操作日期和时间
- 日期和时间格式化
- MomentJS - 日期查询
- MomentJS - 国际化
- MomentJS - 自定义
- MomentJS - Duration
- MomentJS - 工具函数
- MomentJS - 插件
- MomentJS - 示例
- MomentJS 有用资源
- MomentJS - 快速指南
- MomentJS - 有用资源
- MomentJS - 讨论
MomentJS - 时间减法
此方法将从给定的 Duration 中减去时间。
语法
moment.duration().subtract(Number, String); moment.duration().subtract(Number); moment.duration().subtract(Duration); moment.duration().subtract(Object);
示例
var d = moment.duration(500, 'days'); var st = moment.duration(500, 'days').subtract({ days: 7, months: 1 });
输出
momentjs_durations.htm
广告