Solution to the problem of embedding SWF in the page to overwrite the div layer

  • 2020-03-30 01:41:01
  • OfStack

If SWF is passed < Object> < / object> Method insert, then add the following broken code
 
<param name="wmode" value="Opaque"> 

Another method is to insert SWF through the script_swfobject.js plug-in, which is set with the following method:
 
<div id="flashcontent"></div> 
<script type="text/javascript"> 
var so = new SWFObject("flash.swf", "player", 570, 400, "9.0.28.0", "#000000",false); 
so.addVariable("web", 1); 
so.addParam("wmode", "Opaque"); 
so.write("flashcontent"); 
</script> 

Related articles: