我在这里要完成的是在单击#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" );
});