- MomentJS 教程
- MomentJS - 主页
- MomentJS - 概览
- MomentJS - 环境设置
- MomentJS - 简介
- MomentJS - 解析日期和时间
- MomentJS - 日期验证
- MomentJS - Getter/Setter
- 操作日期和时间
- 格式化日期和时间
- MomentJS - 日期查询
- MomentJS - 国际化
- MomentJS - 自定义
- MomentJS - 持续时间
- MomentJS - 实用程序
- MomentJS - 插件
- MomentJS - 示例
- MomentJS 有用资源
- MomentJS - 快速指南
- MomentJS - 有用资源
- MomentJS - 讨论
MomentJS - 秒
此方法将给出持续时间中的秒数。返回的值介于 0-59 之间。如果您想要持续时间内的秒数的适当长度,请使用 **moment.duration().asSeconds().**
语法
moment.duration().seconds(); moment.duration().asSeconds();
示例
var a = moment.duration(20000).seconds();
输出
如果您想要显示持续时间内的秒数的长度,请使用 moment.duration().asSeconds() 如下 -
示例
var a = moment.duration(600).asSeconds();
输出
momentjs_durations.htm
广告