方法名 说明 代码
getFullYear() 获取当年 dateObj.getFullYear()
getMonth() 获取当月(0-11) dateObj.getMonth()
getDate() 获取当天日期 dateObj.getDate()
getDay() 获取星期几(周日0-周六6) dateObj.getDay()
getHours() 获取当前小时 dateObj.getHours()
getMinutes() 获取当前分钟 dateObj.getMinutes()
getSeconds() 获取当前秒钟 dateObj.getSeconds()
今天是2022年4月28日1时40分15秒星期四
格式化时分秒,要求封装一个函数,格式为08:08:08
function getTime () {
var date = new Date();
var hours = date.getHours();
hours = hours < 10 ? ‘0’ + hours : hours;
var minutes = date.getMinutes();
minutes = minutes < 10 ? ‘0’ + minutes : minutes;
var seconds = date.getSeconds();
seconds = seconds < 10 ? ‘0’ + seconds : seconds;
return hours + ‘:’ + minutes + ‘:’ + seconds;
}
console.log(getTime());
01:52:12
.