这是我的jplayer代码。问题是它在 Chrome,Opera,Firefox 中运行良好,但在桌面上的 Safari浏览器中浏览时,播放会有一些延迟。我不知道为什么会这样。请给我任何帮助或建议。
HTML:
<div id="#jpId1"></div>
JavaScript的:
$("#jpId1").jPlayer({
ready: function () { // The $.jPlayer.event.ready event
$(this).jPlayer("setMedia", { // Set the media
wav: "sound/sound1.wav",
}).jPlayer("stop"); // Attempt to auto play the media
},
ended: function () { // The $.jPlayer.event.ended event
$(this).jPlayer("play"); // Repeat the media
},
supplied: "wav"
}
);