- MomentJS 教程
- MomentJS - 主页
- MomentJS - 概述
- MomentJS - 环境设置
- MomentJS - 介绍
- MomentJS - 解析日期和时间
- MomentJS - 日期验证
- MomentJS - 获取器/设置器
- 操纵日期和时间
- 格式化日期和时间
- MomentJS - 日期查询
- MomentJS - 国际化
- MomentJS - 自定义
- MomentJS - 时段
- MomentJS - 实用工具
- MomentJS - 插件
- MomentJS - 示例
- MomentJS 有用资源
- MomentJS - 快速指南
- MomentJS - 有用资源
- MomentJS - 讨论
MomentJS - 小时
此方法将获取/设置小时。它从 0-23 中接受输入,如果超出提供的范围,它将添加到天中。
语法
moment().hour(Number); moment().hour(); moment().hours(Number); moment().hours();
示例
var m = moment().hour(); // gets the current hour var d = moment().hour(8); // sets the hour as shown below
输出
momentjs_getter_setter.htm
广告