直播app源码,输入密码和用户名调用开发者工具
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div>
<input type="text" id="inner" />
</div>
<script>
//禁止鼠标右击
document.oncontextmenu = function () { //鼠标右键事件
alert('请使用f12打开开发者工具')
//event.returnValue = false; //该方法已经被弃用,建议使用下面一个,更简单
return false;//直接返回false,
};
//禁用开发者工具F12
document.onkeydown = document.onkeyup = function (e) { //键盘事件
if (e && e.keyCode === 123) { //f12的键盘码为:123
let user = prompt('请输入用户名:');
let password = prompt('请输入密码:')
if (user === 'admin' && password === 'admin') {
e.returnValue = true
return true
}
e.returnValue = false;
return false;
}
};
</script>
</body>
</html>
以上就是直播app源码,输入密码和用户名调用开发者工具, 更多内容欢迎关注之后的文章
标签:用户名,false,app,源码,开发者,输入 From: https://www.cnblogs.com/yunbaomengnan/p/16918135.html