美文网首页
JavaScript——等待60秒,弹窗跳转案例

JavaScript——等待60秒,弹窗跳转案例

作者: 洛小白洛公子 | 来源:发表于2018-06-29 10:28 被阅读0次

    等待60秒,弹窗跳转

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    </head>
    <body>
        <p>This is a paragraph of HTML</p>
        <script>
            function moveon() {
                //通过弹出一个对话框来询问用户一个问题
                var answer = confirm("准备好了吗?");
                //单击“确定”按钮,浏览器会加载一个新的页面
                if (answer)
                    window.location = "https://www.baidu.com";
            }
            //在一分钟(6万毫秒后执行定义的这个函数)
            setTimeout(moveon,60000)
        </script>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:JavaScript——等待60秒,弹窗跳转案例

          本文链接:https://www.haomeiwen.com/subject/vcgoyftx.html