Jquery禁用网页右键菜单

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