- MomentJS 教程
- MomentJS - 首页
- MomentJS - 概述
- MomentJS - 环境设置
- MomentJS - 介绍
- MomentJS - 解析日期和时间
- MomentJS - 日期验证
- MomentJS - Getter/Setter
- 操作日期和时间
- 设置日期和时间格式
- MomentJS - 日期查询
- MomentJS - 国际化
- MomentJS - 定制化
- MomentJS - 时间段
- MomentJS - 实用程序
- MomentJS - 插件
- MomentJS - 实例
- MomentJS 有用资源
- MomentJS - 快速指南
- MomentJS - 有用资源
- MomentJS - 讨论
MomentJS - 默认值
创建 moment 时,它会生成当前的日期、月份、年份、小时、分钟和秒作为输出。我们可以在创建 moment 时指定单位为默认值,并且相同的值将保持显示,其余部分与当前日期/时间相同。
示例
var m = moment({hour: 3, minute: 40, seconds: 10});
请注意,在以上示例中,我们已将小时、分钟和秒的默认值设为 03:40:10,并且在保持其余当前日期不变的情况下显示相同的值。
输出
momentjs_parsing_date_and_time.htm
广告