首页 > 编程 > JavaScript > 正文

js实现动态显示时间效果

2019-11-19 17:18:13
字体:
来源:转载
供稿:网友

话不多说,请看代码:

<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>时间显示器</title>  </head> <body>    <div id="d"></div>     <script type="text/javascript">         var nowTime ;        function play(){        var time = new Date();        nowTime = time.getFullYear()+"年"+time.getMonth()+"月"+time.getDate()+"日"+time.getHours()+"时"+time.getMinutes()+"分"+time.getSeconds()+"秒";        document.getElementById("d").innerHTML = nowTime;        }        setInterval(play,1000);    </script>     </body> </html>

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持武林网!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表