1

以下代码不是从 IE9 中的 IIS7 托管的远程网页呈现 swf,而是在 Chrome 和 FF 中呈现。

我错过了什么?

文件:http ://srv.ab.com/page/swftestpage.htm

<script type="text/javascript">

        (function () {

            var object = document.createElement('object');
            object.setAttribute('width', '300');
            object.setAttribute('height', '250');
            object.setAttribute('classid', 'clsid:d27cdb6e-ae6d-11cf-96b8-444553540000');

            var param1 = document.createElement('param');
            param1.setAttribute('name', 'movie');
            param1.setAttribute('value', 'http://srv.ab.com/test.swf');

            var embed = document.createElement('embed');
            embed.setAttribute('src', 'http://srv.ab.com/test.swf');
            embed.setAttribute('width', '300');
            embed.setAttribute('height', '250');

            var param2 = document.createElement('param');
            param2.setAttribute('name', 'wmode');
            param2.setAttribute('value', 'transparent');

            object.appendChild(param1);
            object.appendChild(embed);
            object.appendChild(param2);

            var container = document.getElementById('myDivID');
            while (container.firstChild) { container.removeChild(container.firstChild); }
            container.appendChild(object);
        })();

</script>
4

1 回答 1

1

<object>标签上的正确属性是classid. 你有clsid

参考 - http://www.alistapart.com/articles/flashembedcagematch/

我会认真地使用SWFObject 的动态发布,而不是在这里重新发明轮子

于 2012-10-19T03:28:55.667 回答