0
這真的很奇怪。 Jan Sorgalla的jcarousel似乎在Chrome中運行良好,但在IE9中,圖像有時會垂直堆疊,這意味着我可以一次看到所有圖像。 有時當我點擊刷新時,它們會正常顯示,但有時候它們會繼續顯示在列表中,我可以在旁邊看到子彈。 下面是我使用的代碼:jquery jcarousel並不總是顯示在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>
謝謝, 喬
我不知道內聯樣式和位置:絕對可能屬於您的問題。但是,您顯示的代碼並不是生成的HTML,因爲它包含
thaJeztah
我編輯了我的原始帖子以顯示生成的html – jbassking