- MomentJS 教程
- MomentJS - 首页
- MomentJS - 概览
- MomentJS - 环境设置
- MomentJS - 介绍
- MomentJS - 解析日期和时间
- MomentJS - 日期验证
- MomentJS - 获取器/设置器
- 操作日期和时间
- 格式化日期和时间
- MomentJS - 日期查询
- MomentJS - 国际化
- MomentJS - 自定义
- MomentJS - 持续时间
- MomentJS - 实用程序
- MomentJS - 插件
- MomentJS - 示例
- MomentJS 有用的资源
- MomentJS - 快速指南
- MomentJS - 有用的资源
- MomentJS - 讨论
MomentJS - 是否在之前
此方法检查给定的时刻是否在另一个时刻之前。它返回 true 或 false。
语法
moment().isBefore(Moment|String|Number|Date|Array); moment().isBefore(Moment|String|Number|Date|Array, String);
范例
var isbefore = moment().isBefore('2020-10-21');
输出
注意 isBefore 内部使用的日期大于当前日期,因此我们得到的输出为 true。
范例
var isbefore = moment([2015, 10, 01]).isBefore([2000, 10, 21]);
输出
使用 isBefore,我们可以比较从一种时刻到另一种时刻的日期。我们还可以使用 isBefore 指定单位。支持的单位有年、月、周、日、时、分和秒。
范例
让我们考虑一个使用传递给 isBefore() 的单位的工作范例;
var isbefore = moment([2015, 10, 01]).isBefore([2010, 10, 21], 'year');
输出
momentjs_date_queries.htm
广告