定时器

注意:开定时器之前,先清除
日期对象:
【定时器】var oDate = new Date();
获取年:
oDate.getFullYear();
获取月:
oDate.getMonth();
从0开始:
获取日:
oDate.getDate();
获取时:
oDate.getHours();
获取分:
oDate.getMinutes();
获取秒:
oDate.getSeconds();

    推荐阅读