这真的很奇怪。Jan Sorgalla 的 jcarousel 似乎在 Chrome 中运行良好,但在 IE9 中,图像有时是垂直堆叠的,这意味着我可以一次看到所有图像。有时当我点击刷新时,它们会正常显示,但有时它们会继续在列表中分开显示,我可以在其中看到每个项目旁边的项目符号。这是我正在使用的代码:
更新:我更改为实际的 HTML
<ul id="mycarousel" class="jcarousel-skin-tango">
<li>
<img id="MainContent_Image1b" src="images/img1.png" style="height:275px;width:825px;" />
</li>
<li>
<table style="position: relative">
<tr>
<td>
<img id="MainContent_Image8" src="images/img2.png" />
<a href="#">
<img id="MainContent_Image9" src="Images/btn.png" style="border: 0px none; position: absolute;
top: 205px; left: 25px;" />
</a>
</td>
</tr>
</table>
</li>
<li>
<img id="MainContent_Image10" src="images/img3.png" />
</li>
</ul>
谢谢,乔