等待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>
网友评论