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

时间:2015-01-16 08:49:08

标签: html html5 audio tags

我在学习教程的同时制作了一个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>

3 个答案:

答案 0 :(得分:1)

其控件无法控制 这是代码  

<!DOCTYPE html>
<html>
<body>

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

</body>
</html>

答案 1 :(得分:1)

        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>

答案 2 :(得分:0)

您的加价无效。 <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>