2

我在这里要完成的是在单击#exit_button 时销毁此jPlayer 实例。我尝试了很多解决方案,但似乎都没有。

这是我在我的网络项目中使用的媒体播放器。http://www.codebasehero.com/files/music-player-1.0.1/demo/

$(document).ready(function(){

//same voice diff flow
$('#enter_button1').click(function(){$('#photoline_overlay1').slideDown('9000');
    $('#enter_button1').hide();

         var description = 'Lorem ipsum';

   $('#photoline_overlay1').ttwMusicPlayer(myPlaylist, {
            autoPlay:false, 
            description:description,
            jPlayer:{
                swfPath:'js/jquery-jplayer', //You need to override the default swf path any time the directory structure changes


            }
        });

});


$('#exit_button1').click(function(){$('#photoline_overlay1').slideUp('9000');
    $('#enter_button1').show();
            $("#jquery_jplayer").jPlayer( "destroy" );

});
4

1 回答 1

2

请试试这个,它可能会帮助http://www.jplayer.org/latest/developer-guide/#jPlayer-destroy

于 2013-07-22T08:01:08.337 回答