// html
<div id="body" oncontextmenu="doNothing()"></div>
// 方法定义
function doNothing() {
window.event.returnValue = false;
return false;
}
// html
<div id="body" oncontextmenu="doNothing()"></div>
// 方法定义
function doNothing() {
window.event.returnValue = false;
return false;
}