首頁 >web前端 >js教程 >如何使用 JavaScript 從 Iframe 重新導向父視窗?

如何使用 JavaScript 從 Iframe 重新導向父視窗?

Linda Hamilton
Linda Hamilton原創
2024-10-30 20:51:30926瀏覽

How to Redirect the Parent Window from an Iframe using JavaScript?

從 Iframe 重定向父視窗

如果您想從 iframe 內重定向父窗口,可以使用 JavaScript 來實現。操作方法如下:

Window.top.location.href

要重定向最頂層的父iframe,請使用以下程式碼:

window.top.location.href = "http://www.example.com";

Window.parent.location.href

要重定向直接父iframe,請使用以下程式碼:

window.parent.location.href = "http://www.example.com";
<script></script>

以上是如何使用 JavaScript 從 Iframe 重新導向父視窗?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn