下面是播放 mp3 音频文件的代码。我只能播放一个文件,但我需要播放多个文件,我的意思是像一个播放列表。所以,请帮帮我。它是一个 jplayer。
谢谢你
$(document).ready(function(){
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
mp3: "media/test.mp3",
}).jPlayer("play"); // auto play
},
ended: function (event) {
$(this).jPlayer("play");
},
swfPath: "swf",
supplied: "mp3"
})
.bind($.jPlayer.event.play, function() { // pause other instances of player when current one play
$(this).jPlayer("pauseOthers");
});