日期 date

日期

function getTime(){

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");

box.innerHTML = "当前时间:"+ year +"年"+ month +"月"+ day +" "

+ hours +":"+ mins + ":"+ seconds +"."+ ms;

}

//定时函数

                setTimeout(function test() {

alert(123456)

},5000);

setInterval(function () {

console.info("112222")

},2000)

你可能感兴趣的:(日期 date)