<script>
//一般play()方法就可以自动播放了,但是一些iPhone机不可以
document.getElementById('idName').play(); //微信必须加入Weixin JSAPI的WeixinJSBridgeReady才能生效 document.addEventListener("WeixinJSBridgeReady", function () { document.getElementById('idName').play(); document.getElementById('video').play(); //视频自动播放 }, false); </script>
注:转自: