8

我正在向 HTML5 网站添加音频。音频在 FireFox 和 IE 上运行良好,但在 FireFox 中不显示和播放。任何想法为什么和解决方案?提前致谢。

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
</head>

<body>
<audio controls="controls" autoplay="autoplay">
 <source src="cd.mp3" type="audio/mpeg" />
 Your browser does not support the audio element.
</audio>
</body>
</html>
4

2 回答 2

6

Firefox 不支持 MP3。它不会显示回退消息,因为它支持音频标签。 https://developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements#MPEG_H.264_(AAC_or_MP3)

于 2012-05-19T18:51:45.670 回答
1

您不能在 Firefox 中使用这样的代码播放 MP3 文件。

请参阅https://developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements

于 2012-05-19T19:05:58.067 回答