- MomentJS 教程
- MomentJS - 主页
- MomentJS - 概述
- MomentJS - 环境设置
- MomentJS - 简介
- MomentJS - 解析日期和时间
- MomentJS - 日期验证
- MomentJS - 获取/设置
- 处理日期和时间
- 格式化日期和时间
- MomentJS - 日期查询
- MomentJS - 国际化
- MomentJS - 自定义
- MomentJS - 持续时间
- MomentJS - 实用程序
- MomentJS - 插件
- MomentJS - 实例
- MomentJS 实用的资源
- MomentJS - 快速指南
- MomentJS - 实用资源
- MomentJS - 讨论
MomentJS - 末尾时间
末尾时间方法会将显示设置为指定单位的末尾。
语法
moment().endtOf(String);
使用年份作为输入的示例
var day = moment().endOf('year');
这样会显示年份的最后一天并将时间设置为 23:59:59,如下所示 −
使用月份作为输入的示例
var day = moment().endOf('month');
这样会显示月份的最后一天并会将小时、分钟和秒的时间设置为 23:59:59,如下所示 −
momentjs_manipulate_date_and_time.htm
广告