我想从另一个更新一个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>
答案 0 :(得分:1)
如果您希望一个框架中的链接在另一个框架中打开,则需要在链接的name
属性中引用另一个target
属性。因此,在这种情况下,checkresult.html
中的链接需要在test
框架中打开msgstatus
的目标:
<a href="something.html" target="test">Link text</a>