我正在尝试在我的页面上循环嵌入的 mp3 文件。我的声音正常工作,但是我在让它循环播放时遇到了问题。请协助?

I am trying to loop an embeded mp3 file on my page. I got the sound working, however I am having issues getting it to loop. Please Assist?

我正在尝试循环播放声音文件,但找不到解决方案。

<embed class="audio" src="D:\Sublime Text 3\first\Clock-ringing.mp3">

使用 audio 标签:

 <audio autoplay loop>
   <source src="D:\Sublime Text 3\first\Clock-ringing.mp3" type="audio/mpeg">
 </audio> 

您还可以使用:

<embed class="audio" src="D:\Sublime Text 3\first\Clock-ringing.mp3" loop="true">

谢谢。我对其进行了调整,以便隐藏控件和自动播放。

 <audio controls autoplay loop>
   <source src="D:\Sublime Text 3\first\Clock-ringing.mp3" type="audio/mpeg">
 </audio> 

<style>
    audio {
    display: none;
  }
</style>