如果没有安装闪光灯,我在显示图像时遇到问题。我一直在滚动窗口中显示奇怪的字符。 这是我的代码:
<style>
#MyFlashMovie {
background: url("image/Year.gif");
background-repeat: no-repeat;
height: 300px;
width: 460px;
}
</style>
<div ID="MyFlashMovie">
<object type="application/x-shockwave-flash" style="height: 300px; width: 460px;" data="460x300.swf" >
<param name="movie" value="460x300.swf" >
<param name="allowFullScreen" value="true" >
<param name="wmode" value="transparent" >
</object>
</div>
答案 0 :(得分:0)
您可以通过JQuery检测Flash是否安装,然后显示图像
var hasFlash = false;
try {
var fo = new ActiveXObject('ShockwaveFlash.ShockwaveFlash');
if(fo) hasFlash = true;
}catch(e){
if(navigator.mimeTypes ["application/x-shockwave-flash"] != undefined) hasFlash = true;
}