在fancybox中显示带有swf文件的iframe

时间:2013-01-17 14:33:16

标签: jquery iframe fancybox flash

我正试图用jQuery fancybox插件(版本2)解决IE8问题

我需要在fancybox中显示带有一些文本和iframe的div。在iframe中加载的页面包含一个Flash应用程序。我的代码如下:

<a class="fancybox" href="#myDiv">

<div id="myDiv" style="display:none;">
    <iframe width="580" height="420" style="overflow-y: hidden;" scrolling="no" src="http://urlwithflashapp/"></iframe>     
    <div style="width:550px">
        Some text here
    </div>
</div>

JavaScript的:

$(function () {
    $(".fancybox").fancybox();  
});

这适用于除IE8之外的所有其他浏览器。在IE8中,闪存应用程序永远不会出现。它只显示一个带有边框的空白框。

有没有人知道这方面的解决方法? : - )

提前致谢。

0 个答案:

没有答案