dayjs获取当前月有多少天
时间: 2024-05-11 11:18:30 浏览: 391
javascript获取当月天数
5星 · 资源好评率100%
可以使用 Day.js 中的 `daysInMonth()` 方法来获取当前月的天数。使用方法如下:
```javascript
const dayjs = require('dayjs');
const daysInMonth = dayjs().daysInMonth();
console.log(daysInMonth); // 输出当前月的天数
```
当然,你也可以指定一个日期来获取该日期所在月份的天数,例如:
```javascript
const dayjs = require('dayjs');
const date = '2022-02-01';
const daysInMonth = dayjs(date).daysInMonth();
console.log(daysInMonth); // 输出 28,因为 2022 年 2 月只有 28 天
```
阅读全文