MomentJS - 标准化单位



此方法允许标准化程序中使用的单位。请注意,使用单位的方法,例如 moment().get(‘h’) 或 moment().get('hours') 相同。

如果想定义单位的别名,可以使用“Normalize”方法。使用“y”或“YEar”或“yEARs”代替年,normalizeUnits 会回退到“年”。

语法

moment.normalizeUnits(String);

示例

moment.normalizeUnits('y');
moment.normalizeUnits('Y');
moment.normalizeUnits('yEar');
moment.normalizeUnits('yeArs');
moment.normalizeUnits('YeARS');

输出

Normalize

示例

var m = moment.normalizeUnits('M');
var a = moment.normalizeUnits('MONTHS');
var b = moment.normalizeUnits('Months');
var c = moment.normalizeUnits('MonTh');

输出

Normalize Months
momentjs_utilities.htm
广告