我在 Javascript 中创建了一个 jPlayer 对象的实例,它将 MP3 流加载到播放器中,然后自动播放(因此.jPlayer('play');
在准备函数的末尾。
这在所有浏览器中都可以正常工作,通常情况下,Internet Explorer 除外。尽管我很想放弃对它的支持,但有太多预期的访问者使用它,所以我需要想出一些解决方案。
这是我正在使用的代码 - 有什么方法可以修改它以允许它在 IE 中运行,还是我需要添加一些仅限 IE 的异常?
<!-- jQuery/jPlayer JS includes here -->
<script type="text/javascript">
//<![CDATA[
$(document).ready(function(){
$("#jquery_jplayer_1").jPlayer({
ready: function (event) {
$(this).jPlayer("setMedia", {
mp3: "http://website.com:port/;stream/1"
}).jPlayer('play');
},
swfPath: "js",
supplied: "mp3",
solution: "flash,html",
wmode: "window"
});
});
//]]>
</script>
<div id="jquery_jplayer_1" class="jp-jplayer"></div>
<div id="jp_container_1" class="jp-audio">
<div class="jp-type-single">
<div class="jp-no-solution">
<span>Update Required</span>
To play the media you will need to either update your browser to a recent version or update your <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash plugin</a>.
</div>
</div>
</div>
//Custom player controls go here.