功能很簡單,代碼也很簡潔,這裡就不多廢話了,直接奉上源碼,需要的小伙伴直接帶走。
復制代碼 代碼如下:
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的代碼數-->
這是為了別人不看你的代碼,對於不懂得人哦,如果老手是防不住的!