Date 函数
作者:互联网
// 格式化日期 var date = new Date(); console.log(date.getHours()); console.log(date.getMinutes()); console.log(date.getSeconds());
function getTime() { var time = new Date(); var h = time.getHours(); h = h < 10 ? '0' + h : h; var m = time.getMinutes(); m = m < 10 ? '0' + m : m; var s = time.getSeconds(); s = s < 10 ? '0' + s : s; return h + ':' + m + ':' + s; } console.log(getTime()); // Date() 日期对象 var date = new Date(); // console.log(date); console.log(date.getFullYear()); //2020 console.log(date.getMonth() + 1); // 5 +1 console.log(date.getDate()); // 4 console.log(date.getDay()); // 4 // var year = date.getFullYear(); var month = date.getMonth() + 1; var dates = date.getDate(); var arr = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六']; var day = date.getDay(); console.log(year + '年' + month + '月' + dates + '日 ' + arr[day]); // 2020年6月4日
标签:console,log,getHours,var,date,Date,函数 来源: https://www.cnblogs.com/ericblog1992/p/13046686.html