首页 > 代码库 > 禁用右键

禁用右键

$(document).ready(function(){
    $(document).bind("contextmenu",function(e){
        return false;
    });
});

禁用右键