html禁止F12浏览器打开控制台调试,禁止检索代码,禁止右键

JS中加入


// 禁止按F12调试
document.onkeydown = document.onkeyup = document.onkeypress = function (event) {
	var e = event || window.event || arguments.callee.caller.arguments[0];
	if (e && e.keyCode == 123) {
		mAlert();
		e.returnValue = false;
		return (false);
	}
}
function mAlert() {
	alert("感谢使用管理平台,禁止对控制台进行操作!");
}

// 防止鼠标右键浏览器‘检查’操作
setInterval(function () {
	debugger;
}, 100)

// 禁止右键
document.oncontextmenu = function () { return false; };


发布时加到公共引用js里就好了!

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