0

好的,我有一个带有两个 iframe 的 html 页面。

-------------------------------------------------
|              PARENT                           |
|                                               |
|                                               |
|     [iframe1 id=i1 name=i1]                   |    
|                                               |
|                                               |
|                                               |
|     [iframe2 id=i2 name=i2]                   |
|                                               |
|                                               |
-------------------------------------------------

当我单击 iframe1 中的链接时,我需要在 iframe2 中显示结果页面。我努力了:

<a href=blah.html target=parent.i2>link</a>

但这不起作用。

有人知道怎么做吗?

4

2 回答 2

3

我认为您可能需要 JavaScript。就像是

 onclick="javascript:parent.i2.document.location='blah.html'"
于 2009-08-25T14:27:55.530 回答
2
<a href=blah.html target="i2">link</a>

您只需输入“i2”,它应该是此页面中唯一的窗口名称。无需指定父级等。

于 2009-08-25T14:34:45.643 回答