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

   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 + '日');
    
	还有时分秒
	var hour = date.getHours()
	var minute = date.getMinutes()
	var second = date.getSeconds()

你可能感兴趣的:(小程序)