Heim > Fragen und Antworten > Hauptteil
Wie im Bild gezeigt, wie verwende ich js auf Seite B, um Seite A so zu steuern, dass sie zu einer bestimmten Adresse springt?
给我你的怀抱2017-06-23 09:13:55
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
</head>
<body>
<iframe src="b.html"></iframe>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<script type="text/javascript">
function parentJump() {
window.parent.location.href = 'http://www.baidu.com/';
}
</script>
</head>
<body>
<button onclick="parentJump();">父页面跳到百度</button>
</body>
</html>
使用window.parent
从iframe中的页面访问父窗体。