我的目标是使用 MediaElement.js 在 ie8 中播放音频。应使用 MediaElement.js Flash 后备。
我正在使用类似于下面显示的代码。它适用于 Chrome 和 ie9,但不适用于 ie8。音频控件应位于的位置会出现一个黑条,但看不到任何控件。
如果以下代码中的某些元素是正确的,我不是。例如,我不确定是否应该将对象选项卡放在音频标签内。
我怎样才能让闪存回退工作?
These three lines are inside the head tag:
<script src="path/to/jquery.js"></script>
<script src="path/to/mediaelement-and-player.min.js"></script>
<link rel="stylesheet" type="text/css" href="path/to/mediaelementplayer.css">
<audio id="player1" type="audio/mp3" controls="controls" src="absolute path/to/song.mp3">
<source src="path/to/song.ogg"></source>
<object width="400" height="30" type="application/x-shockwave-flash" data="absolute path/to/flashmediaelement.swf">
<param name="movie" value="absolute path/to/flashmediaelement.swf" />
<param name="flashvars" value="controls=true&file=absolute path/to/song.mp3" />
</object>
</audio>
<script>
$(document).ready(function(){
$('audio').mediaelementplayer();
});
</script>