8.9.19 下午 第43天上课

 

8.9.19 下午 第43天上课

 

 

=======================================================================================

8.9.19 下午 第43天上课

8.9.19 下午 第43天上课

8.9.19 下午 第43天上课

==

8.9.19 下午 第43天上课

===========================================================================================

8.9.19 下午 第43天上课

8.9.19 下午 第43天上课

==

8.9.19 下午 第43天上课

 

===========================================================================================

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body onload="setTime()">
        <button onclick="openWin()">打开窗口</button>
        <br/>
        <button onclick="closeWin()">关闭窗口</button>
        <br/>
        <button onclick="stop()">停止时间</button>
        <button onclick="count()" id="btn">Go</button>
        <span id="span"></span>
        <script type="text/javascript">
            var win=null;
            function openWin(){
                win=window.open("http://www.baidu.com","pu");
            }
            function closeWin(){
                win.close();
            }
            var t;
            function setTime(){
                var date=new Date().toLocaleString();
                document.getElementById("span").innerHTML=date;
                
            }
            var t=setInterval("setTime()",500)
            function stop(){
                clearInterval(t);
            }
            var i=0;
            function count(){
                i++;
                document.getElementById("btn").innerHTML=i;
                var t=setTimeout("count()",100);
                if(i==100){
                    clearTimeout(t);
                }
            }
        </script>
    </body>
</html>

===========================================================================================

8.9.19 下午 第43天上课

 

 

8.9.19 下午 第43天上课

8.9.19 下午 第43天上课

 

8.9.19 下午 第43天上课