在网页中插入音频文件

Insert audio file in web page

我想在我的网页中插入一个音频文件。我有 .mp3,但没有 .ogg,所以我的音频无法播放。我该怎么做才能插入该文件? 我有以下代码:

<audio controls autoplay>
        <source src="Viva-la-vida.mp3" type="audio/mpeg">
            Your browser does not support the audio element.
</audio>

说的不对请指正。提前致谢!

您提到的代码在 .mp3 文件中运行良好。你可以做两件事。

  1. 检查您在 .mp3 文件的 src 属性中指定的路径。
  2. 运行 您的 .html 文件在不同的浏览器中。