Autoplay HTML5 audio/video in iOS5

后端 未结 3 1160
慢半拍i
慢半拍i 2020-12-17 04:18

I have an HTML5 web-app that has sound effects. I\'m trying to get these effects working in iOS5 and can\'t for the life of me.

Wondering if anyone has any work-aro

3条回答
  •  执笔经年
    2020-12-17 04:55

    Have you tried something like this??

    function clickedOnce(){
      $('audio').each(function(){
          this.play();
      });
    }
    

提交回复
热议问题