Implementation code:
(Learning video sharing: Programming video)
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+ '日' );
console.log("Current time: " Y 'Year' M 'Month' D 'Day' );
The print results are as follows:
Related recommendations:Small Program Development Tutorial
The above is the detailed content of How to get the current date in the applet. For more information, please follow other related articles on the PHP Chinese website!