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> -->
Jクエリ:
$(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>