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.
我在 html 页面中有一个音频标签,该标签加载到 windows phone 8 的 web 浏览器控件中。当我在此页面中播放音频时,即使退出 web 浏览器控件,它也会继续播放。单击后退按钮后,我想停止播放音频。
我怎样才能实现上述功能?
一种方法是重新加载页面。我猜..使用以下方法..
var js = "window.location.reload(true);"; wbcontent.InvokeScript("eval", js);
但我真正想知道的是,为什么即使在我退出 Web 浏览器控制后,音频仍会继续播放。