您现在的位置:首页 >> 前端 >> 内容

html基础学习_屏蔽F5和鼠标右键

时间:2017/8/28 9:33:00 点击:

  核心提示: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;  

Tags:HT TM ML L基 
作者:网络 来源:AmberWu的博客