我只想在打开mysite home时播放音频。如果点击任何其他页面它不应该播放。我使用下面的代码。它也适用于谷歌Chrome和IE浏览器。它在Firefox当前版本中不起作用。请帮助我。
<embed src="player/paata-ronibarni.mp3"
loop="true"
autoplay="true"
width="0"
height="0">
</embed>
答案 0 :(得分:2)
<audio controls>
<source src="song.mp3" type="audio/mp3">
<source src="song.ogg" type="audio/ogg">
</audio>
Firefox不支持播放MP3文件。您最好的选择是以OGG格式对其进行编码。您只想提供MP3文件,然后您需要使用Flash播放器在Firefox中播放MP3文件