サービスでバックグラウンド ミュージックを再生するために jPlayer を使用しようとしています。
これが私のコードです:
if (command.indexOf('playmusic') != -1) {
var player = document.getElementById('jpId');
$(player).jPlayer(
{
ready: function () {
$(this).jPlayer("setMedia", {
mp3: "../../audio/1.mp3"
}).jPlayer("play");
}, supplied: "mp3"
}
);
}
if (command.indexOf('playnext') != -1) {
var player = document.getElementById('jpId');
$(player).setFile("../../audio/2.mp3");
$(player).play();
}
しかし、コードの playnext 部分が機能しません:
Uncaught TypeError: Object [object Object] has no method 'setFile'
私が間違っていることは何ですか?
ありがとう!