A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

© suichuan689 中级黑马   /  2015-8-30 13:59  /  200 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

<!DOCTYPE html>
<html>
  <head>
    <title>MyHtml_04.html</title>
       
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
   
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
    <style type="text/css">
            #di {
                    width: 180px;
                    height: 20px;
                    background:orange;
                    border: 1px solid black;
            }
    </style>

  </head>
  
  <body>
     <div id="di"> </div>
     <br/>
     &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     <input type="button" value="暂停" onclick="stop();"/>
     <script type="text/javascript">
                     function getTime(){
                                     var date=new Date();
                                     var standerTime=date.toLocaleString();
                                     var div=document.getElementById("di");
                                     div.innerHTML=standerTime;
                             }
                     var id=setInterval("getTime();", 1000);
                    
                     function stop(){
                             clearInterval(id);
                     }
     </script>
  </body>
</html>
您需要登录后才可以回帖 登录 | 加入黑马