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.
由于所有页面都在同一个标签“body”中,因此在离开带有音频的页面后,播放器继续播放。如何捕捉用户离开页面的内容并停止音频?
检查当前页面是否不是您播放音频的页面并进行相应处理。您可以使用以下代码知道哪个是您的当前页面。
var activePage = $('.ui-page-active').attr('id'); if (activePage != "your-audio-page-id") { }