- MomentJS 教程
- MomentJS - 主页
- MomentJS - 概述
- MomentJS - 环境设置
- MomentJS - 简介
- MomentJS - 解析日期和时间
- MomentJS - 日期验证
- MomentJS - 获取器/设置器
- 操作日期和时间
- 格式化日期和时间
- MomentJS - 日期查询
- MomentJS - 国际化
- MomentJS - 自定义
- MomentJS - 时段
- MomentJS - 实用程序
- MomentJS - 插件
- MomentJS - 示例
- MomentJS 有用资源
- MomentJS - 快速指南
- MomentJS - 有用资源
- MomentJS - 讨论
MomentJS - 毫秒
此方法将获取/设置毫秒。要设置毫秒,它会从 0-999 范围内获取值,如果该范围超出了,则将加到秒数中。
语法
moment().millisecond(Number); moment().millisecond(); moment().milliseconds(Number); moment().milliseconds();
示例 1
var m = moment().millisecond();
输出
示例 2
var m = moment().millisecond(555);
输出
momentjs_getter_setter.htm
广告