返回禁用右键单击、......登陆

禁用右键单击、F5刷新jquery代码

阿神2016-11-08 11:11:241320

1、禁用右键单击功能

$(document).ready(function() { 
       $(document).bind("contextmenu",function(e) {               
        alert("sorry! No right-clicking!"); 
        return false; 
       }); 
});

2、屏蔽F5刷新

$(document).ready(function() {  
    $(document).bind("keydown",function(e){     
            e=window.event||e;  
            if(e.keyCode==116){  
                e.keyCode = 0;  
                return false;   
            }  
        });   
});


最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送