屏蔽网页右键操作的JS代码
function Click(){alert("禁止右键"); window.event.returnValue=false; }document.oncontextmenu=Click;