解决微信音频在手机端不能播放问题

微信音频在pc端可以播放,但在ios上为了节约流量 默认是不开启播放的

1.页面加载完,即播放

   // --创建页面监听,等待微信端页面加载完毕 触发音频播放
       document.addEventListener('DOMContentLoaded', function () {
            function audioAutoPlay() {
                var audio = document.getElementById('audio');
                    audio.play();
                document.addEventListener("WeixinJSBridgeReady", function () {
                    audio.play();
                }, false);
            }
            audioAutoPlay();
       });
    
2.某个条件下,自动播放
 var mouse=document.getElementById('mouse'); 
 WeixinJSBridge.invoke('getNetworkType', {}, function (res) {
                   mouse.play() 
                });

3.更详细讲解 http://www.css88.com/archives/6002 

微信音频播放详解

你可能感兴趣的:(微信)