MomentJS - 作为 ISO 8601 字符串



此方法将字符串格式化为 ISO8601 标准。它以 UTC 形式提供时间戳。

语法

moment().toISOString();
moment().toISOString(keepOffset);

示例

var a = moment().toISOString();

输出

As ISO

为避免以 UTC 形式显示,请在 toISOString(true) 中使用 true,如下所示

示例

var a = moment().toISOString(true);

输出

toISOString
momentjs_formatting_date_and_time.htm
广告