练习:输出今天的日期,以YYYY-MM-DD的方式,比如今天是2015年8月11日,则输出2015-08-11
var o = {
/*
*输出今天的日期,以YYYY-MM-DD的方式,比如今天是2015年8月11日,则输出2015-08-11
*/
outputDate:function(){
var arrDate = [];
var nowDate = new Date();
var year = nowDate.getFullYear();//获取年,返回2015
var month = nowDate.getMonth() + 1;//返回月,0是1月
month = month<10 ? '0'+month : month;
var day = nowDate.getDate();//返回日,
day = day<10 ? '0'+day : day;
console.log(year+'-'+month + '-' +day);//或者利用下面的数组方法
arrDate.push(year);
arrDate.push(month);
arrDate.push(day);
arrDate = arrDate.join('-');
console.log(arrDate);
}
};
o.outputDate();