网上的解决方案:
from:http://codingforums.com/showthread.php?t=95109
(a) place flash embed script in
(b) add wmode=transparent to flash embed script[增加wmode=transparent 到flash嵌入脚本]
(c) set
(d) set tag with style .. position:relative;left:0px;top:0px;z-index:0;
(otherwise firefox does not accept negative z-index)
(e) set floating iframe in container with z-index: 99;[将浮动的iframe在容器中的zindex设置为99]
(f) use css to position flashcontent and htmlcontent containers.[使用css来调整flash容器和html容器的位置]
其他方案网上比较多见,不做阐述.在此说下使用第一个方案如何解决:
var so = new SWFObject("XXX.swf", "flashId", "宽度", "高度", "版本", "背景色");
//设置flash不遮盖div层
so.addParam("wmode", "opaque");
so.write("flashcontent");
如此设置即可让flash无法遮盖住div.











