首页 > Web开发 > 详细

10.网页时钟

时间:2017-11-20 21:28:21      阅读:223      评论:0      收藏:0      [点我收藏+]
 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 2 "http://www.w3.org/TR/html4/loose.dtd">
 3 <html>
 4 <head>
 5 <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
 6 <title>网页时钟</title>
 7 <script type="text/javascript">
 8 
 9     function displayTime(){
10 
11         var timeDiv=document.getElementById("timeDiv");
12         var nowTime=new Date();
13         var strnowTime=nowTime.toLocaleString();
14         
15         timeDiv.innerHTML=strnowTime;    
16     
17     }
18     
19     function start(){
20     
21         window.setInterval("displayTime()",1000);
22     
23     }
24     
25 
26 </script>
27 </head>
28 <body onload="start()">
29 
30     <div id="timeDiv"></div>
31 
32 </body>
33 </html>

 

10.网页时钟

原文:http://www.cnblogs.com/xuzhiyuan/p/7868033.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!