Chrome/Webkit audio tag bug?

前端 未结 3 768
说谎
说谎 2021-02-08 12:47

I\'m trying to get HTML5\'s audio tag to work in Chrome. The following code works flawlessly in Firefox, any ideas why it isn\'t working in Webkit?


         


        
3条回答
  •  一整个雨季
    2021-02-08 13:21

    Try to host your audio file somewhere and try this:

    audio = new Audio('http://www.yourhosting.com/chat.ogg');
    audio.play();
    

提交回复
热议问题