欢迎来到Cecilia陈的博客

孤独,是人一生最好的修行。

[04--DOM] 清除循环弹框

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script>
        function f() {
            alert("你看到我了?")
        }

        function out() {

                var t=setInterval(f,2000)
                function inner() {
                    clearInterval(t)
                }
                setTimeout(inner,6000)
            }
            out()
    </script>
</head>
<body>

</body>
</html>
posted @ 2019-10-16 23:52  Cecilia陈  阅读(111)  评论(0编辑  收藏  举报