HTML5 - 音频标签由于某种原因不起作用

HTML5 - Audio tag for some reason does not work

我在学习教程时制作了一个 Html5 页面,由于某种原因,该标签对他有效,但对我无效。 我在 Opera 和 Firefox 中尝试过,但两者都没有显示。只是一个带有我的标题的普通空白网页。

代码如下:

    <!DOCTYPE html>
<html>
    <head>
        <meta charset="utf8"/>
        <title>DogePage</title>
    </head>
    <body>
        <audio control >
            <source src="music1.mp3" type="audio/mpeg"/>
            If you can see this update your browser
        </audio>
    </body>
</html>

其控制不控制 这是代码

<!DOCTYPE html>
<html>
<body>

<audio controls>
  <source src="abc.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>

</body>
</html>

您的标记无效。 <audio> 标签没有名为 control 的属性,它应该是 controls.

您需要像这样更改标记:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf8"/>
        <title>DogePage</title>
    </head>
    <body>
        <audio controls> <!-- not *control* -->
            <source src="music1.mp3" type="audio/mpeg"/>
            If you can see this update your browser
        </audio>
    </body>
</html>
        Everything is good in your code just missing "s" in control it should be controls

Like This:

 <!DOCTYPE html>
<html>
    <head>
        <meta charset="utf8"/>
        <title>DogePage</title>
    </head>
    <body>
        <audio controls>
            <source src="music1.mp3" type="audio/mpeg"/>
            If you can see this update your browser
        </audio>
    </body>
</html>