禁用右键
$(function(){
$(document).bind("contextmenu",function(e){
return false;
});
//js方式
function stop(){
}
document.oncontextmenu=stop;