点击链接后如何在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>
感谢。
答案 0 :(得分:3)
为iframe添加名称(<iframe name='youriframe' src='' ...></iframe>
)并将target='youriframe'
添加到您的链接中,例如:<a href='http://example.com/' target='youriframe'>Click!</a>