> For the complete documentation index, see [llms.txt](https://keenv.gitbook.io/notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://keenv.gitbook.io/notes/x5.md).

# 腾讯x5浏览器内核

## video

目前安卓QQ浏览器允许wifi下自动播放、手机QQ允许自动播放、微信不允许自动播放。

### 解决

```jsx
// iOS
document.addEventListener("WeixinJSBridgeReady", function () { 
    document.getElementById('audio').play(); 
  document.getElementById('video').play(); 
}, false);
// Andriod
document.addEventListener("click", function () { 
    document.getElementById('audio').play(); 
  document.getElementById('video').play(); 
}, false);
```

![x5/Untitled.png](https://914534613-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M65yqPlrkKutCGCfbuS%2Fsync%2Fd2482e57dfd9e462ff5343313840aa0a8c686134.png?generation=1600424957658120\&alt=media)

<https://x5.tencent.com/tbs/guide.html>
