我使用jPlayer插件作为音频播放器,但是当我设置此属性时,loadeddata
等某些事件似乎不起作用:solutions: "flash, html"
。
以下是我的代码:
$(document).ready(function() {
$("#jquery_jplayer_1").jPlayer({
ready: function(event) {
$(this).jPlayer("setMedia", {
mp3: "http://www.jplayer.org/audio/mp3/TSP-01-Cro_magnon_man.mp3",
oga: "http://www.jplayer.org/audio/ogg/TSP-01-Cro_magnon_man.ogg"
});
},
swfPath: "http://jplayer.org/latest/dist/jplayer",
solution:"flash,html",
supplied: "mp3, oga"
});
$("#jquery_jplayer_1").bind($.jPlayer.event.loadeddata,function(event){
$(this).jPlayer("play") });
});