微信小程序获取当前年月
时间: 2023-09-15 09:20:01 浏览: 92
详解微信小程序获取当前时间及日期的方法
5星 · 资源好评率100%
你可以使用 JavaScript 的 Date 对象来获取当前年月。具体代码如下:
```js
const now = new Date(); // 创建一个 Date 对象,表示当前时间
const year = now.getFullYear(); // 获取当前年份
const month = now.getMonth() + 1; // 获取当前月份,需要加上 1,因为月份是从 0 开始计数的
console.log(year + '年' + month + '月'); // 输出当前年月
```
以上代码中,我们首先创建了一个 Date 对象,表示当前时间。然后通过 Date 对象的 getFullYear() 和 getMonth() 方法获取当前年份和月份。注意,getMonth() 方法返回的月份是从 0 开始计数的,因此需要加上 1 才是实际的月份。最后使用 console.log() 方法将当前年月输出到控制台。你可以根据需要将其显示在小程序界面上。
阅读全文