国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

js秒顯示當(dāng)前時(shí)間

Original 2018-12-23 17:56:42 246
abstract:<!DOCTYPE html><head><meta charset="utf-8"><script type="text/javascript">function showTime(){     nowtime=new Date();     yea

<!DOCTYPE html>

<head>

<meta charset="utf-8">


<script type="text/javascript">

function showTime(){

    

nowtime=new Date();

    

year=nowtime.getFullYear();

    

month=nowtime.getMonth()+1;

    

date=nowtime.getDate();

    

document.getElementById("mytime").innerText=year+"年"+month+"月"+date+" "+nowtime.toLocaleTimeString();

}


setInterval("showTime()",1000);



</script>


</head>


<body>


<span id="mytime"></span>


</body>


</html>


Correcting teacher:天蓬老師Correction time:2018-12-23 18:00:35
Teacher's summary:setInterval的第一個(gè)參數(shù)最好加個(gè)匿名方法,而不是直接使用字符串。最好這樣:setInterval(function(){showTime();},1000);

Release Notes

Popular Entries