微信小程序获取当前日期时间

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 );

你可能感兴趣的:(微信小程序获取当前日期时间)