阻止默认事件
document.oncontextmenu=function(e){
e=e||window.event;
window.event?e.returnValue=false:e.preventDefault();
alert('阻止默认事件成功');
}
阻止默认事件
document.oncontextmenu=function(e){
e=e||window.event;
window.event?e.returnValue=false:e.preventDefault();
alert('阻止默认事件成功');
}