0

我正在尝试使用 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'

我做错了什么?

谢谢!

4

1 回答 1

0

我认为你应该这样做

$('#jpId').jPlayer('setMedia', {
  mp3: '../../audio/2.mp3',
}).jPlayer('play');

代替

var player = document.getElementById('jpId');
$(player).setFile("../../audio/2.mp3");
$(player).play();
于 2011-09-13T11:37:44.607 回答