JS 如何禁止用户按下 F12 弹出浏览器弹窗? [ 2.0 版本 ]
JS 如何禁止用户按下 F12 弹出浏览器弹窗?
共 5 个回答
-
Lucifer_wn 回答于 2020-05-08 11:16 举报
document.onkeydown=function (e){ var currKey=0,evt=e||window.event; currKey=evt.keyCode||evt.which||evt.charCode; if (currKey == 123) { window.event.cancelBubble = true; window.event.returnValue = false; } }
PHP学院的中学生
注册时间:2018-10-23
最后登录:2024-09-23
在线时长:168小时13分
最后登录:2024-09-23
在线时长:168小时13分
- 粉丝29
- 金钱4725
- 威望30
- 积分6705