我正在为
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>
解决方法
Firefox不支持MP3.它不会显示回退消息,因为它支持音频标记.
https://developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements#MPEG_H.264_(AAC_or_MP3)
https://developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements#MPEG_H.264_(AAC_or_MP3)