gpt4 book ai didi

html - 将 iframe 链接加载到父窗口?

转载 作者:技术小花猫 更新时间:2023-10-29 11:46:56 25 4
gpt4 key购买 nike

我有这个 iframe 代码:

<iframe src="http://www.example.com" border="0" framespacing="0" marginheight="0" marginwidth="0" vspace="0" hspace="0" scrolling="yes" width="100%" frameborder="0" height="100%"></iframe>

我想做的是..当我点击 iframe 页面中的任何链接时..然后我将转到它并且页面将加载并且我将从当前页面退出到 iframe 链接作为一个新页面.

类似于 target="_self" - 不像普通的 iframe,它会在浏览器本身没有任何更改的情况下转到此链接。

例子:iframe 源代码:http://www.w3schools.com

当我在 iframe 页面中单击“学习 HTML”时...然后我将转到 http://www.w3schools.com/html/default.asp我的浏览器 URL 也会更改为它。

所以我只是点击了 iframe 中的一个链接,然后转到了它。

有什么想法吗?

最佳答案

是的,您可以使用 target="_parent"实现这一目标。

"target="_parent" opens the linked document in the parent frame."

示例:

<a target="_parent" href="http://example.org">Click me!</a>

编辑:

如果这不起作用,您可以尝试 _top:

<a target="_top" href="http://example.org">Click me!</a>

基本目标:

<base target="_parent" />

或者 JavaScript 中的 window.top.location:

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

关于html - 将 iframe 链接加载到父窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15712880/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com