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.
假设您想在整点播放 beep.mp3,因此您编写了 JavaScript 代码来执行此操作,这并不难。但是当用户切换到另一个选项卡时,您的页面很快就会处于非活动选项卡中,您将不会再听到这些音频警报。
有没有办法解决这个问题?
如果我们在 HTML 中包含音频,那么即使浏览器选项卡处于非活动状态,我们也可以使用 JavaScript 播放。
<body> <audio id="beep" src="audio source file" preload="auto" ></audio> <script> function playBeep() { document.getElementById("beep").play(); } playBeep(); </script> </body>