我有这样的粗体,在我的网站上显示视频。除了IE9之外,它在所有浏览器上都能正常工作。有什么问题吗?
<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>发布于 2014-10-13 04:15:59
试着把它放进iframe,
<iframe name="iframeanimfx" src="http://yourswfobjecturl.swf" height="600" width="900">
</iframe>你可以设置的高度和宽度的iframe到任何你喜欢的。
https://stackoverflow.com/questions/26332646
复制相似问题