2

次のようにプレーヤーを初期化すると:


$("#jquery_jplayer").jPlayer({
        ready: function () {
            this.element.jPlayer("setFile", "/previews/cancion.mp3", "/previews/horse.ogg").jPlayer("play");
        },
        volume: 50,
        oggSupport: true
    })


自動再生を無効にする方法はありますか?

4

3 に答える 3

7

削除する.jPlayer("play")

于 2010-04-22T16:03:36.123 に答える
1

マニュアルを読んでみてはどうですか:

http://www.happyworm.com/jquery/jplayer/latest/developer-guide.htm

ループ(繰り返し)を無効にするには、次を試します:

$("#jpId").jPlayer("onSoundComplete", function() {
  // Directly access this instance's jPlayer methods. (Does not support chaining.)
  this.stop(); 
});
于 2010-04-22T16:10:19.053 に答える