self_example/java_web/JavaScript/html/13-Location对象.html

38 lines
673 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>13-location对象</title>
</head>
<body>
<script>
// alert("要跳转了")
// location.href ="https://www.baidu.com";
//3秒跳转到首页
// document.write("3秒跳转到首页...")
// setTimeout(function () {
// location.href ="https://www.baidu.com";
// },3000)
//实现待指示3秒跳转
i = 3;
setInterval(function () {
if (i == 0) {
location.href ="https://www.baidu.com";
}
document.close();
document.write(i + "秒跳转到首页...");
i--;
}, 1000)
</script>
</body>
</html>