点击链接时在iframe中显示网页

时间:2012-01-01 12:02:30

标签: html iframe

点击链接后如何在iframe中显示网页? : -

使用此代码,我们可以在文档加载期间显示example.com。但是我想在点击此文档中的链接时进行此操作。(此iframe必须显示在table中。)

<table border="1">
<tr>
<td style="width:500px;height:400px">
<iframe src='http://example.com' frameborder="0" style="width:100%;height:100%"></iframe>
</td>
</tr>
</table>

感谢。

1 个答案:

答案 0 :(得分:3)

为iframe添加名称(<iframe name='youriframe' src='' ...></iframe>)并将target='youriframe'添加到您的链接中,例如:<a href='http://example.com/' target='youriframe'>Click!</a>