JavaScript函数4:时间元素

2018-06-12  本文已影响0人  天下vs栋哥

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)

 },2000);

上一篇下一篇

猜你喜欢

热点阅读