我想创建一个3x3表格,其中每个单元格都包含一个带有一些外部页面的iframe(我的实际用例是同时编辑9个Google文档)。
我所知道的唯一解决方案是:
<table>
<tr>
<td>
<iframe src="docs.google.com/myfile1">
</td>
<td>
<iframe src="docs.google.com/myfile2">
</td>
...
</table>
有没有一种更聪明的方法可以使用JQuery?
答案 0 :(得分:0)
你可以使用divs
<div id="1"></div>
<div id="2"></div>
$(document).ready(function() {
$("#1").load("docs.google.com/myfile1");
$("#2").load("docs.google.com/myfile2");
});