JS-获取当年当月当日
// JS-获取当年当月当日
getCurrentDate() {
var date = new Date();
var year = date.getFullYear(); // 当年
// 月份<10时,其样式是 0+月份,比如:01,02...;月份>=10时,就直接展示月份,比如:10,11,12...
var month = (date.getMonth()+1) < 10 ? '0' + (date.getMonth()+1) : (date.getMonth()+1); // 当月【注意:date.getMonth()+1一定要加括号喔】
// 天数<10时,其样式是 0+天数,比如:01,02...;天数>=10时,就直接展示天数,比如:10,11,12...
var strDate = date.getDate() < 10 ? '0' + date.getDate() : date.getDate(); // 当日
var currentDate = year + '-' + month + '-' + strDate; // 当年-当月-当日
console.log(typeof(year));console.log(typeof(month));console.log(typeof(strDate));
},