从子 iframe 访问父 iframe
好的,我有一个 html 页面,上面有两个 iframe。
-------------------------------------------------
| PARENT |
| |
| |
| [iframe1 id=i1 name=i1] |
| |
| |
| |
| [iframe2 id=i2 name=i2] |
| |
| |
-------------------------------------------------
当我单击 iframe1 中的链接时,我需要在 iframe2 中显示结果页面。我已经尝试过:
<a href=blah.html target=parent.i2>link</a>
但这不起作用。
有人知道该怎么做吗?
Okay, I have an html page with two iframes on it so.
-------------------------------------------------
| PARENT |
| |
| |
| [iframe1 id=i1 name=i1] |
| |
| |
| |
| [iframe2 id=i2 name=i2] |
| |
| |
-------------------------------------------------
When I click on a link in iframe1, i need the resulting page to display in iframe2. I have tried:
<a href=blah.html target=parent.i2>link</a>
but that does not work.
any one know how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想你可能需要 JavaScript。像这样的东西
I think you might need JavaScript. Something like
您只需输入“i2”,它应该是该页面中唯一的窗口名称。无需指定父级等。
You just need to put "i2" it should be unique window name in this page. No need to specify parent etc.