日期
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 = "當(dāng)前時(shí)間:"+ year +"年"+ month +"月"+ day +" "
+ hours +":"+ mins + ":"+ seconds +"."+ ms;
}
//定時(shí)函數(shù)
? ? ? ? ? ? ? ? setTimeout(function test() {
alert(123456)
},5000);
setInterval(function () {
console.info("112222")
},2000)