browser_autoplay_js.html (443B)
1 <!DOCTYPE HTML> 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public 3 - License, v. 2.0. If a copy of the MPL was not distributed with this 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 5 <meta charset="utf8"> 6 <audio> 7 <source src="audio.ogg" /> 8 </audio> 9 <script> 10 onload = function() { 11 let audio = document.querySelector("audio"); 12 for (let i = 0; i < 100; ++i) { 13 audio.play(); 14 } 15 }; 16 </script>