利用js动态显示实时时间
html代码如下:
1 | <p id="time"></p> |
js代码如下:
1 2 3 4 5 6 7 8 9 10 | <script> function showtime(){ now=new date(); year=now.getFullYear(); month=now.getdMonth()+1; date=now.getDate(); document.getElementById("time").innerText=year+"年"+month+"月"+date+" "+now.toLocalTimeString(); } setInterval("showtime()",1000); </script> |
您的系统为:linux系统 请您文明评论