我可以从另一个更新一个iframe吗?

时间:2010-01-04 06:44:31

标签: iframe

我想从另一个更新一个iframe。我在一个iframe中有一个链接,它应该更新另一个iframe的内容。 checkresult.html中有链接,应该更新statusmessage.html。

<table width="100%">
    <tr>
    <td width="10%">
    <iframe id="test" src ="checkresult.html" height="1000px" width="100%" frameborder="1">
    </iframe >
    </td>   
    <td align="left" width="80%">
    <iframe id="msgstatus"  name = "test" src ="StatusMessage.html" align="left"  width="100%" height="1000px" frameborder="1" >

    </iframe></td>
    </tr>
    </table>

1 个答案:

答案 0 :(得分:1)

如果您希望一个框架中的链接在另一个框架中打开,则需要在链接的name属性中引用另一个target属性。因此,在这种情况下,checkresult.html中的链接需要在test框架中打开msgstatus的目标:

<a href="something.html" target="test">Link text</a>