jPlayer事件不适用于Flash解决方案

时间:2015-10-07 17:56:41

标签: jquery jplayer

我使用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") });
}); 

0 个答案:

没有答案