我有多个列和行的表,
实施例,
<table>
<thead>
<tr>
<th>Head 1</th>
<th>Head 2</th>
<th>Head 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>
//Image is loaded from external URL.
<img src="${Url}/school/${value}/image?size=tb" />
</td>
<td>Data 3</td>
</tr>
</tbody>
</table>
问题:这在所有浏览器中都运行良好但在IE6浏览器中挂起。我的表只有10条记录。 (如果我删除图像然后工作正常。)
请有人就此问题给我一些想法。
答案 0 :(得分:0)
这是一个cross-browser
问题。您是否尝试不关闭 img
代码?我的意思是试试这个,
<img src="${Url}/school/${value}/image?size=tb">
BTW,实际上并不重要。