在同一页面中使用两个 iFrame 在 Firefox 中不起作用
我在页面中使用两个 iframe,一个用于菜单页面,另一个用于某些默认页面。因此,我使用了两个 iframe 来加载外部页面。它在 IE 中运行良好。但是,在火狐浏览器中不行。第二个 iframe 不显示。请帮帮我。
<table id="tbleMain" width="100%" align="left" >
<tr align="left" style="width: 10%; height: 10%">
<td align="left" colspan="2">
<img src="../Images/Logo.JPG" height="70px" width="1000px"/>
</td>
</tr>
<tr style="height: 90%">
<td width="3%">
<iframe id="frame1" name="f1" align="left" frameborder="0" width="200px" height="500px" src="Menu.jsp"/>
</td>
<td width="97%" valign="top" align="left">
<iframe id="frame2" name="f2" align="left" frameborder="0" width="200px" height="500px" src="SrchEnv.jsp"/>
</td>
</tr>
</table>
I'm using two iframes in my page one for menu page and another for some default page. So, I used two iframes for loading the external pages. It is working fine in IE. But, not in firefox. The second iframe is not displayed. Please help me out.
<table id="tbleMain" width="100%" align="left" >
<tr align="left" style="width: 10%; height: 10%">
<td align="left" colspan="2">
<img src="../Images/Logo.JPG" height="70px" width="1000px"/>
</td>
</tr>
<tr style="height: 90%">
<td width="3%">
<iframe id="frame1" name="f1" align="left" frameborder="0" width="200px" height="500px" src="Menu.jsp"/>
</td>
<td width="97%" valign="top" align="left">
<iframe id="frame2" name="f2" align="left" frameborder="0" width="200px" height="500px" src="SrchEnv.jsp"/>
</td>
</tr>
</table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更改你的第一个 iframe 标签,如下所示:
应该没问题,但我不知道为什么它以这种方式运行。
change your first iframe tags like below:
It should be ok,but I don't know why it run in this way.