How to make audio autoplay on chrome

后端 未结 17 1767
南旧
南旧 2020-11-22 08:42

audio autoplay working in Mozilla, Microsoft edge and old google chrome as well but not in new google chrome. they have blocked the autoplay. is there any way to make it au

17条回答
  •  臣服心动
    2020-11-22 09:10

    The default HTML5 audio autoplay attribute is not working in chrome, but you can force audio autoplay using JavaScript. Try this:

    document.getElementById('myAudio').play();
    

    This works for me.

提交回复
热议问题