gpt4 book ai didi

javascript - MediaElement.js在iOS上不会暂停

转载 作者:行者123 更新时间:2023-12-01 16:44:06 26 4
gpt4 key购买 nike

我使用JQM 1.4和MediaElements(最新)...

我使用多页模板,每次更改页面时都想暂停音频播放器...

我使用此代码...

$(document).on("pagebeforeshow", function (e, ui) {
$("audio").each(function () {
$(this)[0].pause();
});
});

它在 AndroidFirefox上工作正常,但是在 iOS中出现问题...

音频标签具有 id="audio_element"

我尝试了不同的解决方案...我有同样的问题...
mediaelement.js - pause all players (iOS)(问题很旧,所以我想代码已更改)。

所以我不知道其他解决方案...知道吗?

最佳答案

尝试:

$(document).on("pagebeforeshow", function (e, ui) {
$("audio").each(function () {
this.player.pause();
});
});

关于javascript - MediaElement.js在iOS上不会暂停,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21611026/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com