iOS系统及微信中不支持audio自动播放问题

来源:互联网 发布:上瘾网络剧台湾未删减 编辑:程序博客网 时间:2024/06/05 08:06
<script src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script> <script>      //一般情况下,这样就可以自动播放了,但是一些奇葩iPhone机不可以      document.getElementById('idName').play();     //微信必须加入Weixin JSAPI的WeixinJSBridgeReady才能生效     document.addEventListener("WeixinJSBridgeReady", function () {         document.getElementById('idName').play();         document.getElementById('video').play(); //视频自动播放    }, false); </script>