h5

如果视频是video元素,可以写个定时器,每秒钟设置一下播放状态

f12打开开发者工具,切换到console面板,输入下面代码并回车

setInterval(function () {
        var current_video = document.getElementsByTagName('video')[0]
        current_video.play()
       }, 1000)

flash

如果是flash视频,可以重写失去焦点函数。

f12打开开发者工具,切换到console面板,输入下面代码并回车

if (!-[1,] && !window.XMLHttpRequest || navigator.userAgent.indexOf("MSIE 8.0") > 0) {

            document.onfocusout = function () {

                return true;

            }

        } else {

            window.onblur = function () {

                return true;

            }

        }

jQuery

这种方法没有验证,适合引用jQuery的网课平台。

方法:在浏览器地址栏输入

    javascript:jQuery.fn.pauseMovie=function(){}

https://www.52pojie.cn/thread-1007103-2-1.html

Last modification:October 9th, 2022 at 03:22 pm
如果觉得我的文章对你有用,请随意赞赏