码迷,mamicode.com
首页 > Web开发 > 详细

JS 禁止刷新和右键

时间:2014-06-24 15:18:18      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   ext   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
 
<body>
 <div style="width:100px; height:100px; background:#09C;"
</body>
<script type="text/javascript">
//F5
document.documentElement.onkeydown=function(e){
    e=e||window.event;
    if(e.keyCode==116){
        if(e.returnValue){
            e.returnValue=false;
        }else{
            e.stopPropagation();
        }
        return false;
    }
}
//右键
document.documentElement.oncontextmenu=function(e){
    e=e||window.event;
    e.cancelBubble = true;
    e.returnValue=false;
    return false;
}
</script>
</html>

 没有测试

JS 禁止刷新和右键,布布扣,bubuko.com

JS 禁止刷新和右键

标签:style   class   blog   code   java   ext   

原文地址:http://www.cnblogs.com/mr-amazing/p/3805813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!