JavaScript函数4:时间元素

3.时间元素:

3.1获取时间

var myDate = new Date();                                                             

 var year = myDate.getFullYear();                                

 var month  = myDate.getMonth() + 1;

  var day = myDate.getDate();                                    日

  var week = myDate.getDay();                                 星期

  var hours = myDate.getHours();

  var mins = myDate.getMinutes();

  var seconds = myDate.getSeconds();

  var ms = myDate.getMilliseconds();                        毫秒

  var box = document.getElementById("show");

定时函数    控制时间

setInterval(getTime,1);

setTimeout(function test() {

alert(123456)

你可能感兴趣的:(JavaScript函数4:时间元素)