function Click(){ alert("禁止右键"); window.event.returnValue=false; } document.oncontextmenu=Click;
详细解决方案
障蔽网页右键操作的JS代码
热度:67 发布时间:2012-11-23 22:54:33.0
相关解决方案
function Click(){ alert("禁止右键"); window.event.returnValue=false; } document.oncontextmenu=Click;