<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<script>
function rec(){
var tz=confirm("请问需要跳转至百度么");
if(tz==true){
window.open("http://www.baidu.com");
}
else{
alert("感谢使用");
}
setTimeout(rec,3000);
}
</script>
</head>
<body>
</body>
</html>
添加回答
举报
0/150
提交
取消