其他分享
首页 > 其他分享> > window打开关闭方法和window定时器方法

window打开关闭方法和window定时器方法

作者:互联网

与开发关闭有关的方法:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>

</head>
<body>
    <input id="openBtn" type="button" value="打开窗口">
    <input id="closeBtn" type="button" value="关闭已经打开的窗口">

    <script>
        /*
         打开新窗口
        open();*/

        var openBtn = document.getElementById("openBtn");
        openBtn.onclick = function () {
            //打开新窗口
            open("https://www.baidu.com");
        };

        //关闭新窗口
        var closeBtn = document.getElementById("closeBtn");

        closeBtn.onclick = function () {
            close();
        };
    </script>
</body>
</html>

与定时器有关的方式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>

</head>
<body>


    <script>
        //一次性定时器
        // setTimeout("alert('boom~~')",3000);

        // var id = setTimeout(fun, 2000);
        // clearTimeout(id);
        function fun() {
            alert('bomm~~');
        }

        var id = setInterval(fun,2000);
        clearInterval(id);

        //循环定时器
        // setInterval(fun, 2000);



    </script>
</body>
</html>

标签:定时器,setInterval,fun,window,var,setTimeout,方法,id
来源: https://www.cnblogs.com/ailhy/p/16553265.html