js中isBefore函数如何判断

1、isBefore判断一个moment对象是否在某个时间点之前。

moment('2010-10-20').isBefore('2010-10-21');//true

2、默认的比较单位是毫秒,但是假如我们想要限制到其他的时间单位,我们可以将其作为第二个参数传入。接受的单位和startOf支持的单位一样。

console.log(moment('2017-11-03').isBefore('2017-11-06'))
console.log(moment('2017-11-03').isBefore('2017-11-06','year'))
console.log(moment('2017-11-03').isBefore('2018-11-06','year'))

以上就是js中isBefore函数的判断方法,学会后赶快对moment对象进行判断吧。更多js学习指路:js教程

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容