微信小程序获取当前年月日

it2025-09-04  6

getNowDate(){ var timestamp = Date.parse(new Date()); var date = new Date(timestamp); //获取年份 var Y =date.getFullYear(); //获取月份 var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1); //获取当日日期 var D = date.getDate() < 10 ? '0' + date.getDate() : date.getDate(); console.log("当前时间:" + Y + '年' + M+ '月' + D+ '日' ); } onShow(){ this.getNowDate() }

console.log(“当前时间:” + Y + ‘年’ + M+ ‘月’ + D+ ‘日’ ); 结果:当前时间:2020年10月22日

最新回复(0)