核心提示:html基础学习_屏蔽F5和鼠标右键。/*** 屏蔽F5*/function onkeydown(){if (event.keyCode==116){event.keyCode = 0;event.c...
html基础学习_屏蔽F5和鼠标右键。
/**
* 屏蔽F5
*/
function onkeydown(){
if (event.keyCode==116){
event.keyCode = 0;
event.cancelBubble = true;
return false;
}
}
document.onkeydown = this.onkeydown;
/**
* 屏蔽鼠标右键
*/
function norightclick() {
window.event.returnValue=false;
}
document.oncontextmenu = this.norightclick;


