從iFrame 重定向父視窗
如果父視窗中嵌入了iFrame,則可能需要重定向父視窗的位置變更為新的URL。為了實現這一點,JavaScript 提供了一個簡單的解決方案。
使用JavaScript 重新導向父視窗
在iFrame 的JavaScript 程式碼中,您可以使用下列方法:
重定向最頂層父IFrame:
<code class="javascript">window.top.location.href = "http://www.example.com";</code>
重定向父IFrame:
<code class="javascript">window.parent.location.href = "http://www.example.com";</code>
範例 HTML帶有超鏈接的 IFrame
<code class="html"><iframe src="iframe.html"></iframe> <a href="#" onclick="window.parent.location.href = 'http://www.example.com'">Click Here to Redirect Parent IFrame</a></code>
以上是如何使用 JavaScript 從 iFrame 重新導向父視窗?的詳細內容。更多資訊請關注PHP中文網其他相關文章!