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.
我想要一种简单的方式来播放一次声音,就在文档准备好时。
当我在网上搜索线索时,我发现了很多,但没有一个是解释性的,所以我要求的是如何在最兼容浏览器和最轻便的方式上构建它的一些帮助。
谢谢 ;)
使用此标记
<audio id="sound_tag" src="your_audio_file.wav" preload="auto"></audio> <script type="text/javascript"> $(document).ready(function(){ $('#sound_tag')[0].play(); }); </script>