鱼C论坛's Archiver
论坛
›
Web开发
› 网页禁用F12
wp231957
发表于 2022-7-7 10:46:30
网页禁用F12
<script>
document.onkeydown = document.onkeyup = document.onkeypress=function()
{
if (window.event.keyCode==123)
{
alert("本页面禁用F12");
event.keycode=0;
event.returnValue=false;
}
}
</script>
页:
[1]
查看完整版本:
网页禁用F12