标题:实现三秒后跳转其他页面
<!DOCTYPE html>
<html>
<head>
<title>跳转页面</title>
</head>
<body>
<h1>将在3秒后跳转到另一个页面...</h1>
<script>
// 使用JavaScript的定时器函数setTimeout()来在3秒后执行跳转
setTimeout(function() {
// 替换下面的"your_target_page.html"为您要跳转的目标页面的URL
window.location.href = "your_target_page.html";
}, 3000); // 3000毫秒即为3秒
</script>
</body>
</html>