JS页面跳转的问题主要可以分为三种情况:跳转到父页面、最外层页面、本页面。下面详细说明每种情况如何进行页面跳转。
JS页面跳转的问题主要可以分为三种情况:跳转到父页面、最外层页面、本页面。下面详细说明每种情况如何进行页面跳转。
跳转到父页面
跳转到父页面时,我们需要使用 window.parent
对象来实现。具体实现方式如下:
// 跳转到父页面
window.parent.location.href = '跳转的目标页面的链接'
示例代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>父页面</title>
</head>
<body>
<h1>父页面</h1>
<button onclick="jump()">跳转到子页面</button>
<script>
function jump() {
window.location.href = '子页面.html';
}
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>子页面</title>
</head>
<body>
<h1>子页面</h1>
<button onclick="jump()">跳转到父页面</button>
<script>
function jump() {
window.parent.location.href = '父页面.html';
}
</script>
</body>
</html>
在子页面中,我们使用 window.parent.location.href
来跳转到父页面。
跳转到最外层页面
跳转到最外层页面时,我们需要使用 window.top
对象来实现。具体实现方式如下:
// 跳转到最外层页面
window.top.location.href = '跳转的目标页面的链接'
示例代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>最外层页面</title>
</head>
<body>
<h1>最外层页面</h1>
<button onclick="jump()">跳转到子页面</button>
<script>
function jump() {
window.location.href = '子页面.html';
}
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>子页面</title>
</head>
<body>
<h1>子页面</h1>
<button onclick="jump()">跳转到最外层页面</button>
<script>
function jump() {
window.top.location.href = '最外层页面.html';
}
</script>
</body>
</html>
在子页面中,我们使用 window.top.location.href
来跳转到最外层页面。
跳转到本页面
跳转到本页面时,我们可以使用 window.location.reload()
来重新加载页面。或者直接改变 location.href
的值来加载跳转到的页面。
示例代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>本页面</title>
</head>
<body>
<h1>本页面</h1>
<button onclick="jump()">跳转到其他页面</button>
<script>
function jump() {
// 直接跳转到某个页面
window.location.href = '某个页面.html';
// 重新加载当前页面
// window.location.reload();
}
</script>
</body>
</html>
在本页面中,我们可以使用 window.location.href
来直接跳转到其他页面,或者使用 window.location.reload()
来重新加载本页面。
通过上面的三个步骤,我们已经完整地讲解了 JS 页面跳转的问题。
本文标题为:js页面跳转的问题(跳转到父页面、最外层页面、本页面)
基础教程推荐
- Ajax+Struts2实现验证码验证功能实例代码 2023-01-20
- ajax获取json数据为undefined原因分析 2023-02-14
- css3 盒模型以及box-sizing属性全面了解 2023-12-21
- JavaScript canvas复刻苹果发布会环形进度条 2022-08-30
- 又一个典型css实例 2022-11-04
- Struts2和Ajax数据交互示例详解 2023-02-15
- javascript showModalDialog传值与FireFox的window.open 父子窗口传值示例 2024-02-09
- 如何在wxml中直接写js代码(wxs) 2024-02-06
- JavaScript实现三种常用网页特效(offset、client、scroll系列) 2023-08-12
- 8.css的定位.html 2023-10-28