Swfobject视频在IE9中不起作用

时间:2014-10-13 03:47:47

标签: javascript internet-explorer-9 swfobject

我有这样的swfoject在我的网站上显示视频。除IE 9外,它在所有浏览器上都能正常工作。可能是什么问题?

<script src='http://...js/swfobject.js'></script>
                    <div id='video' style='width: 640px; height: 480px;'></div>
                    <script >
                      swfobject.embedSWF('http://...js/swfobject.js', 'video', 640, 480, '10.3', 'false',
                        {file:'cam210.0', streamer:'rtmp://1111111111.../1111111111', 'rtmp.tunneling':false, autostart:true}, 
                        {allowFullScreen : 'true', allowNetworking : 'all'});
                    </script>

更新

                <iframe id='video' name='iframeanimfx' src='http://xmpp.feelinhome.ru:8080/flu/js/swfobject.js'  height='600' width='900'></iframe>
                <script >

                 swfobject.embedSWF('http://...jwplayer.swf', 'video', 640, 480, '10.3', 'false',
                    {file:'cam210.0', streamer:'rtmp://.../1111111111', 'rtmp.tunneling':false, autostart:true}, 
                    {allowFullScreen : 'true', allowNetworking : 'all'});
                </script>

1 个答案:

答案 0 :(得分:3)

尝试将其放入iframe中,

<iframe name="iframeanimfx" src="http://yourswfobjecturl.swf"  height="600" width="900">
</iframe>

您可以将iframe的高度和宽度设置为您喜欢的任何内容。