- MomentJS 教程
- MomentJS - 主页
- MomentJS - 概述
- MomentJS - 环境设置
- MomentJS - 介绍
- MomentJS - 解析日期和时间
- MomentJS - 日期验证
- MomentJS - 获取器/设置器
- 操作日期和时间
- 格式化日期和时间
- MomentJS - 日期查询
- MomentJS - 国际化
- MomentJS - 自定义
- MomentJS - 持续时间
- MomentJS - 实用工具
- MomentJS - 插件
- MomentJS - 示例
- MomentJS 有用资源
- MomentJS - 快速指南
- MomentJS - 有用资源
- MomentJS - 讨论
MomentJS - 至今的时间
此方法会显示给定日期到现在的时段长度。
语法
moment().toNow(); moment().toNow(Boolean);
示例
var a = moment([2015, 3, 15]).toNow();
输出
如果要删除前缀,请使用 true 与 toNow() 结合使用,如下所示 −
示例
var a = moment([1995, 3, 15]).toNow(true);
输出
momentjs_formatting_date_and_time.htm
广告