moment.js的扩展方法

在moment.js的使用过程当中,有时须要对moment的属性与方法进行扩展,以moment.duration的humanize方法为例:javascript // 设置时间长度为50周 var w50s = moment.duration(50, 'w').humanize() // 结果输出为1年 console.log(w50s); 从上面的例子能够看出,moment.js特地设计的hum
相关文章
相关标签/搜索