uniapp获取时间年月日

要获取当前年月日,可以使用JavaScript中的Date对象。以下是示例代码:

let now = new Date();
let year = now.getFullYear();
let month = now.getMonth() + 1;
let date = now.getDate();

首先创建一个Date对象以表示当前日期和时间。然后调用对象的getFullYear()getMonth()getDate()方法来获取年、月和日。需要注意的是,getMonth()方法返回的是0到11之间的数字,因此需要将其加1来获取实际的月份。

你可能感兴趣的:(uni-app,前端)