我在 HTML5 中使用 jplayer 播放音频。当我在 Visual Studio 2010 中测试并在浏览器中查看(来自 VS2010)时,音频有效。但是,如果我不在 VS2010 中并双击 .htm 文件以在浏览器中查看,则音频无法正常工作。我正在使用 IE9。这是我的代码:
html5:
<script type="text/jscript" src="jQuery.jPlayer.2.2.0/jquery.jplayer.min.js"></script>
<!-- <script type="text/jscript" src="http://www.jplayer.org/2.2.0/js/jquery.jplayer.min.js"></script> -->
查询:
$(document).ready(function () {
$("#jpId").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
mp3: "/HolidayCard/179_short_all-the-family-together_0033.MP3"
}).jPlayer("play");
},
//swfPath: "http://www.jplayer.org/latest/js/Jplayer.swf",
swfPath: "http://www.jplayer.org/2.2.0/js",
solution: "html,flash",
supplied: "mp3",
wmode: "window"
});
});
HTML5 div 标签:
<div id="jpId" ></div>