禁用鼠标右键,兼容火狐、IE

//禁用鼠标右键,防止查看源代码,兼容火狐、IE
document.oncontextmenu = function(e) {return false;};
document.onselectstart=function(e){return false;}

你可能感兴趣的:(禁用鼠标右键,兼容火狐、IE)