码迷,mamicode.com
首页 > Web开发 > 详细

html显示时间

时间:2016-12-08 18:03:34      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:时间   new   let   image   http   local   ima   head   code   

 1 <html>
 2 <head>
 3 <script type="text/javascript">
 4  function time() {
 5  var time = new Date();
 6  document.getElementById("time").innerHTML = time.toLocaleTimeString();
 7  setTimeout("time()", 1000);
 8  }
 9  window.onload = time;
10  </script>
11 
12 </head>
13 <body >
14 <span id="time"></span>
15 </body>
16 </html>

技术分享

html显示时间

标签:时间   new   let   image   http   local   ima   head   code   

原文地址:http://www.cnblogs.com/qiwu1314/p/6145721.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!