//------------------------------------获取系统日期时间 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());//------------获取秒
原文:http://www.cnblogs.com/supe/p/6357460.html