date 取年月值js
时间: 2023-05-08 17:55:50 浏览: 190
js Date 获取 年 月 日 具体的值
要从 Date 类型中取年月值,在 JavaScript 中可以使用 Date 类型的 getFullYear() 和 getMonth() 方法。
getFullYear() 方法返回 Date 对象的年份(例如 2021),是一个四位数。
getMonth() 方法返回 Date 对象的月份(0 - 11),其中 0 表示 一月,1 表示二月,以此类推。
例如,下面的代码展示如何创建一个 Date 对象,然后使用 getFullYear() 和 getMonth() 方法来取得年份和月份:
```
var today = new Date();
var year = today.getFullYear();
var month = today.getMonth() + 1; // 因为 getMonth() 方法返回值 0-11,所以要加 1
console.log("今天是" + year + "年" + month + "月");
```
这将打印出类似以下内容的信息:
```
今天是2021年7月
```
注意,由于月份从 0 开始计数,因此在使用 getMonth() 方法时需要将其返回值加 1。
阅读全文