屏蔽右键

document.body.oncontextmenu = function(event){
oEvent=event?event:window.event;
oEvent.preventDefault();
}
原文地址:https://www.cnblogs.com/cly84920/p/4427199.html