MomentJS - 毫秒



此方法将获取/设置毫秒。要设置毫秒,它会从 0-999 范围内获取值,如果该范围超出了,则将加到秒数中。

语法

moment().millisecond(Number);
moment().millisecond();
moment().milliseconds(Number);
moment().milliseconds();

示例 1

var m = moment().millisecond();

输出

Millisecond

示例 2

var m = moment().millisecond(555);

输出

Moment Millisecond
momentjs_getter_setter.htm
广告