当我在ie 10 中隐藏带有iframe 的fancybox 时,fancybox 消失并且iframe 卡住了。Fancybox 版本:2.1.4。我的html:
<ul class="gallery_new">
<li id="104" class="video">
<span>title</span>
<a href="images/gallerys/kids/big/wipeout2.jpg" class="fancybox">
<img src="images/g2allerys/kids/thumbnails/wipeout2_thumb.jpg">
</a>
<a class="showVideo" href="#video104"></a>
</li>
</ul>
<div style="display:none" id="video104">
<iframe width="425" height="355" src="http://www.youtube.com/embed/bYS2hrj9HzI" frameborder="0" allowfullscreen=""></iframe>
</div>
js是:
$("ul.gallery_new > li > a.fancybox").fancybox({
openEffect : 'elastic',
closeEffect : 'elastic',
helpers : {
title : {
type : 'inside'
}
}
});
$("ul.gallery_new > li > a.showVideo").fancybox();