0

我只想在打开 mysite 主页时播放音频。如果单击任何其他页面,则不应播放。我使用下面的代码。它在谷歌浏览器和 IE 中也能正常工作。它在 Firefox Present 版本中不起作用。请帮我。

<embed src="player/paata-ronibarni.mp3"
    loop="true" 
    autoplay="true" 
    width="0" 
    height="0">
</embed>
4

1 回答 1

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 文件

于 2013-09-03T11:00:47.043 回答