- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>时间特效</title>
- <script type="text/javascript">
- function disptime(){
-
- var today=new Date();
- var hh = today.getHours();
- var mm = today.getMinutes();
- var ss = today.getSeconds();
- document.getElementById("myclock").innerHTML ="<h1>现在是:"+ hh +":"+ mm +":"+ ss +"</h1>";
- }
- function interval(){
- setInterval("disptime()",1000)
- }
- </script>
- </head>
- <body onload="interval()">
- <div id="myclock"></div>
- </body>
- </html>
复制代码 |
|