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 });

输出

Subtracts
momentjs_durations.htm
广告