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

输出

Second
momentjs_getter_setter.htm
广告