这是我的JQuery代码:
$('.winkel a.1 ').fancybox({
'autoDimensions' : false,
'width' : 650,
'height' : 550,
});
此页面上的我的HTML看起来像这样:
<div class="winkel">
<ul>
<li class="check">Boeken <a href="boekenwinkel.html#boekenwrap" class="1"> Lees meer<span>»</span></a></li>
<li class="check">Eigen gemaakte Jam</li>
<li class="check">Honing</li>
<li class="check">Groente en fruit uit eigen Tuin</li>
</ul>
</div>
页面“boekenwinkel.html”中的HTML如下所示:
<div id="boekenwrap">
<h2>Boekenlijst</h2>
<p>onderstaande boeken zijn op dit moment bij ons in de verkoop</p>
<table id="boeken">
<thead>
<tr>
<th>Nummer</th>
<th>Titel en Omschrijving</th>
<th>Auteur</th>
<th>Prijs</th>
</tr>
</thead>
<tbody>
<tr >
<td>blabla</td>
<td>blabla</td>
<td>blabla</td>
<td>blabla</td>
</tr>
</tbody>
</table>
</div>
这一切在FF和Chrome中都很有效,但在IE中我得到的消息是:The requested content cannot be loaded. Please try again later.
是什么导致了这个问题,我该如何解决?