flowplayer没有在firefox上工作

kri*_*hna 5 firefox flowplayer

我使用flowplayer在页面中嵌入了一个flv文件.它在IE8,Chrome和Opera中运行得很好,但firefox拒绝显示任何内容.该文件应该只是空白区域.这是一个已知的问题 ?

Flowplayer版本:3.1.4 Firefox版本:3.5.5 Firefox扩展:Java Quick starter,RealPlayer Browser记录插件.

js代码:

flowplayer("flvContent", "flowplayer-3.1.5.swf", "somefile.flv");
Run Code Online (Sandbox Code Playgroud)

kri*_*hna 5

找出问题所在.嵌入文件的div没有前面指定的高度和宽度,当添加高度和宽度时,它也可以在firefox上运行.

早期加价:

<div id="flvContent"></div>
Run Code Online (Sandbox Code Playgroud)

修改后的标记:

<div id="flvContent" style="width:80%;height:300px;"></div>
Run Code Online (Sandbox Code Playgroud)