无法在同一页面中运行两个iframe 我的代码
<table width="100%" border="1">
<tr>
<td width="33.3%" align="center"><h2>First Server</h2></td>
<td align="center" width="33.3%" rowspan="2"><h2>Users</h2></td>
<td width="33.3%" align="center"><h2>2nd Server</h2></td>
</tr>
<tr>
<td align="center">
<iframe id="f1" name="f1" src="http://xx-xx.xx/xx/xx.php">
</td>
<td align="center"><iframe name="f2" id="f2" src="http://cc.cc/cc/cc.php"></td>
</tr>
</table>
结果是第一个iframe&#39; f1&#39;对不起我的英语不好 btw URL工作100%
答案 0 :(得分:2)
正如评论中所述,您需要关闭您的iframe - </iframe>
。
所以它会是:
<table width="100%" border="1">
<tr>
<td width="33.3%" align="center"><h2>First Server</h2></td>
<td align="center" width="33.3%" rowspan="2"><h2>Users</h2></td>
<td width="33.3%" align="center"><h2>2nd Server</h2></td>
</tr>
<tr>
<td align="center">
<iframe id="f1" name="f1" src="http://xx-xx.xx/xx/xx.php"></iframe>
</td>
<td align="center"><iframe name="f2" id="f2" src="http://cc.cc/cc/cc.php"></iframe></td>