部分网页的视频失去焦点后会自动暂停。
首先打开F12 ,查看视频的类型,如果是<video>,那么可以使用如下代码:
setInterval(function () {
var current_video = document.getElementsByTagName('video')[0];
current_video.play()},
1000)
标签:视频,网页,焦点,current,video,暂停
From: https://www.cnblogs.com/tutuleilife/p/17750998.html