/封装一个函数,返回当前的时间,格式是:yyyy-MM-dd HH:mm:ss (2018-01-01 01:20:12)

getMilliseconds();//获取毫秒值
getSeconds();//获取秒
getMinutes();//获取分钟
getHours();//获取小时
getDay();//获取星期,0-6 0:星期天
getDate();//获取日,即当月的第几天
getMonth();//返回月份,注意从0开始计算,这个地方坑爹,0-11
getFullYear();//返回4位的年份 如 2016

//思考:
//封装一个函数,返回当前的时间,格式是:yyyy-MM-dd HH:mm:ss (2018-01-01 01:20:12)
function getD() {

var date = new Date();
var year = date.getFullYear();
var month = date.getMonth() + 1;
var day = date.getDate();
var h = date.getHours();
var m = date.getMinutes();
var s = date.getSeconds();

function addZero(num) {
return num < 10 ? '0'+num : num;
}

return year+ '-'+ addZero(month) +'-'+ addZero(day) +' '+ addZero(h) +':' + addZero(m) + ':' + addZero(s);
}

你可能感兴趣的:(/封装一个函数,返回当前的时间,格式是:yyyy-MM-dd HH:mm:ss (2018-01-01 01:20:12))