javascript获取当前时间,没什么好说的,直接上代码。
首选获取当前时间
var d=new Date() 获取系统当前时间
1.获取年份
var d=new Date();
console.log(d.getFullYear());//2022
var born=new Date("1999");
console.log(born.getFullYear())//1999
2.获取当前月份
var d=new Date();//从0开始到11
console.log(d.getMonth());//2022-11-11:6
console.log(d.getMonth()+1);//11
3.获取当前天数
var d=new Date();
console.log(d.getDate());//1-31
var d=new Date("July 21,1983");
console.log(d.getDate())//21
4.获取当前周数
var d=new Date()
console.log(d.getDay());
5.获取当前时间
getHours():0-23
getMinutes():0-59
getSecond():0-59
var d = new Date();
var hour= d.getHours();*//得到小时数*
var minute= d.getMinutes();*//得到分钟数*
var second= d.getSeconds();*//得到秒数