我想在我的网页上播放声音文件(不要媒体播放器UI出现),我的网站将在Fire-Fox上运行,我使用了Embed元素并设置了Hidden属性为true< embed name =“myMusic”src =“Masgon.mp3”type =“audio / midi”
autostart =“false”Hidden =“true”loop =“true”>< / embed>
问题是没有声音播放,除非我删除了这个案例上的隐藏属性声音文件播放,媒体播放器UI出现,但我不想要.
autostart =“false”Hidden =“true”loop =“true”>< / embed>
问题是没有声音播放,除非我删除了这个案例上的隐藏属性声音文件播放,媒体播放器UI出现,但我不想要.
解决方法
<audio src="/music/good_enough.mp3"> <p>If you are reading this,it is because your browser does not support the audio element. </p> </audio>
如果你想要控件
<audio src="/music/good_enough.mp3" controls> <p>If you are reading this,it is because your browser does not support the audio element.</p> </audio>
并且还使用embed
<embed src="/music/good_enough.mp3" width="180" height="90" loop="false" autostart="false" hidden="true" />