10.网页时钟

Posted xzy不会飞的地板流

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10.网页时钟相关的知识,希望对你有一定的参考价值。

 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.网页时钟的主要内容,如果未能解决你的问题,请参考以下文章

10.网页时钟

HTML代码片段

HTML代码片段

原生javascript实现网页显示日期时钟效果

DW网页怎么设计一个时钟

十个html5代码片段,超实用,一定要收藏