HTML網(wǎng)站右鍵禁用F12代碼 屏蔽審查元素 防止修改頁面代碼
<script>//禁止右鍵
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) { alert("歡迎光臨寒舍,有什么需要幫忙的話,請與站長聯(lián)系!謝謝您的合作!!!");
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 == 12) {
window.event.returnValue=false;
return(false);
}
}
</script>
<script>//禁止F12
function fuckyou(){
window.close(); //關(guān)閉當前窗口(防抽)
window.location="about:blank"; //將當前窗口跳轉(zhuǎn)置空白頁
}
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert("歡迎光臨寒舍,有什么需要幫忙的話,請與站長聯(lián)系!謝謝您的合作!!!");
oncontextmenu='return false';
}
}
if (document.layers) {
if (e.which == 3) {
oncontextmenu='return false';
}
}
}
if (document.layers) {
fuckyou();
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) {
fuckyou();
window.event.returnValue=false;
return(false);
}
}
</script>