我正在尝试使用 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'
我做错了什么?
谢谢!