当我像这样初始化播放器时:
$("#jquery_jplayer").jPlayer({
ready: function () {
this.element.jPlayer("setFile", "/previews/cancion.mp3", "/previews/horse.ogg").jPlayer("play");
},
volume: 50,
oggSupport: true
})
有没有办法禁用自动播放?
答案 0 :(得分:7)
删除.jPlayer("play")
答案 1 :(得分: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();
});
答案 2 :(得分:1)
.jPlayer("pause");
那就是它。它适用于我的项目。把它放在播放歌曲的功能的末尾。不是加载jplayer的功能,而是轨道选择功能。
6到7年后看着这些人的欢呼声。 :)其他人确实帮助我找到了这个简单的结论性解决方案。