js获取系统时间

时间:2023-12-14 20:43:02
//------------------------------------获取系统日期时间
var oDate=new Date();
//alert(oDate.getFullYear());//-----------获取年
//alert(oDate.getMonth()+1);//------------获取月份,需要+1
//alert(oDate.getDate());//---------------获取日
//alert(oDate.getDay());//----------------获取星期
//alert(oDate.getHours());//--------------获取时
//alert(oDate.getMinutes());//------------获取分钟
//alert(oDate.getSeconds());//------------获取秒