浏览器切屏小技巧

浏览器切屏小技巧
打开浏览器控制台,输入下面代码并执行。
重新注册监听事件来解除监听。

window.onblur=function(){
	document.onkeydown = function(){return true};
	document.body.oncopy = function(){return true};
	document.onselectstart = function(){return true};
	document.oncontextmenu = function(){return true};
}

你可能感兴趣的:(前端,javascript)