- MomentJS 教程
- MomentJS - 主页
- MomentJS - 概述
- MomentJS - 环境设置
- MomentJS - 简介
- MomentJS - 解析日期和时间
- MomentJS - 日期验证
- MomentJS - 获取/设置器
- 操作日期和时间
- 设置日期和时间的格式
- MomentJS - 日期查询
- MomentJS - 国际化
- MomentJS - 自定义
- MomentJS - 持续时间
- MomentJS - 效用函数
- MomentJS - 插件
- MomentJS - 示例
- MomentJS 有用资源
- MomentJS - 快速指南
- MomentJS - 有用资源
- MomentJS - 讨论
MomentJS - 秒
此方法将获取/设置秒数。它接受 0-59 的输入;如果大于提供的范围,则会添加到分钟中。
语法
moment().second(Number); moment().second(); moment().seconds(Number); moment().seconds();
示例
var m = moment().second(); //gives current second var d = moment().second(10); //sets the second to 10 as shown below
输出
momentjs_getter_setter.htm
广告