P粉7594574202023-08-24 12:54:41
After using jQuery play()
or DOM manipulation as suggested by other answers, it still doesn't work properly in Chrome for Android (version 56.0) (video doesn't autoplay). p>
Based on this post from developers.google. com, Starting with Chrome 53, the browser will respect the autoplay option if the video is muted.
Therefore, using the autoplay muted
attribute in the video tag will make the video autoplay in Chrome browser version 53 and above.
Excerpted from the above link:
P粉7448316022023-08-24 10:59:20
The best solution I could get is to add this code after
<script> document.getElementById('vid').play(); </script>
...Not pretty, but somehow effective.
renew
Recently, many browsers can only automatically play videos with sound turned off, so you also need to add the muted
attribute
<video autoplay muted> ... </video>