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 に答える