我正在尝试用 div 制作一个 html5 flowplayer,但它在 Safari 中不起作用(最新版本,也可能在旧版本上)。即使在 IE 中它也可以工作。
这是js代码:
$("#fplayer").flowplayer({
play : true,
engine: 'html5',
fullscreen : false,
playlist : [
// A list of type-url mappings in picking order
[{
mp4 : defaults.url
}, {
webm : "http://stream.flowplayer.org/bauhaus/624x260.webm"
}, {
ogg : "http://stream.flowplayer.org/bauhaus/624x260.ogv"
}]]
, cuepoints: defaults.cuepoints
});
Safari 开发者控制台中没有错误。可能是什么问题呢?