Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 jQuery-Mobile 构建一个应用程序,每个页面都包含一个图像和自动播放音频。当第一页滑动到下一页时,第一页的音频停止播放,第二页的音频开始播放。谁能帮我怎么做或告诉我一个插件。
提前致谢!
使用 jQuery Mobilepagehide或pagebeforehide事件来停止音频文件。
pagehide
pagebeforehide
$(document).on('pagebeforehide', function () { $(this).find('audio').each(function () { $(this)[0].pause(); }); });