我尝试从外部源或本地源加载闪存(swf 文件),
出于某种原因,我在 html 中使用 object 标签来包含 flash,如果我直接在 object 标签中加载 flash,它将完美地工作,如下所示:
<object height="100" width="100" data="helloworld.swf" id="flash"></object>
接下来,我需要从 JavaScript 动态加载 flash,但是出现了几个问题:
var flash=document.getElementById("flash");
flash.setAttribute("data","helloworld.swf");
上面的代码在 Chrome 中运行良好,但在 IE 中没有任何作用(我的 IE 在 Windows 8 上是 IE11)
如果我将对象标签修改为 iframe 标签,那么它可以工作,但我需要它是对象标签,
有什么解决方案浮现在脑海中?