DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> javascript實現禁止右鍵和F12查看源代碼
javascript實現禁止右鍵和F12查看源代碼
編輯:關於JavaScript     

功能很簡單,代碼也很簡潔,這裡就不多廢話了,直接奉上源碼,需要的小伙伴直接帶走。

復制代碼 代碼如下:
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的代碼數-->

這是為了別人不看你的代碼,對於不懂得人哦,如果老手是防不住的!

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved