IE和Firefox下flash挡住div层的问题
??<param name="movie" value="你的FLASH.swf" />
??<param name="quality" value="high" />
??<param name="wmode" value="transparent">
??<embed wmode="transparent" src="你的FLASH.swf" quality="high" type="application/x-shockwave-flash"?
??pluginspage="http://www.macromedia.com/go/getflashplayer" width="778" height="80"></embed>
??</object>
重要的地方就2点:
1、<param name="wmode" value="transparent">
很常用flash做为背景的命令,在这里就不罗嗦了。如果不加Firefox没问题,IE就会挡住DIV层显示。
2、<embed wmode="transparent">
重点在这里,在<embed>中加入wmode="transparent"属性,Firefox中层的问题就迎刃而解。
?
?