【JS】JavaScript禁止右鍵菜單和F12打開控制臺看代碼
阿新 • • 發佈:2017-11-08
-1 需要 menu rip value ava 禁止 什麽 win
<script type="text/javascript">
//禁止鼠標右鍵菜單和F12打開控制臺看源碼
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert("歡迎光臨寒舍,有什麽需要幫忙的話,請與站長聯系!謝謝您的合作!!!");
oncontextmenu=‘return false‘;
}
}
if (document.layers) {
if (e.which == 3) {
oncontextmenu=‘return false‘;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;")
document.onkeydown =document.onkeyup = document.onkeypress=function(){
if(window.event.keyCode == 123) {
window.event.returnValue=false;
return(false);
}
}
// <--123——112是F1-F12的代碼數-->
</script>
【JS】JavaScript禁止右鍵菜單和F12打開控制臺看代碼