關於谷歌瀏覽器不能播放背景音樂的問題(與IE的不同之處)

勤勞的插秧哥發表於2014-02-26

                                    第一篇博文

                      忍受寂寞,抵制誘惑,持之以恆。

開發時,以下程式碼在IE瀏覽器上能順利播放背景音樂,可在谷歌瀏覽器上卻沒有動靜。

<html>
<body>
<bgsound src="F:\KuGou\S.H.mp3" loop="-1"> </bgsound>
</body>
</html>

解決方法:用html5中的audio標籤來代替bgsound標籤。既:
<audio src="F:\KuGou\S.H.mp3"autoplay="true"> </audio>

當然了,為了適應更多的瀏覽器可以兩種方式都寫上:


<html>
<body>

<bgsound src="F:\KuGou\S.H.mp3" loop="-1"> </bgsound>
<audio src="F:\KuGou\S.H.mp3"autoplay="true"> </audio>

</body>

</html>


 

 

相關文章