日期:2014-05-18  浏览次数:20491 次

屏蔽页面右键问题
为什么在有控件的地方可以屏蔽掉,没有控件的地方还是可以右键
oncontextmenu = "return false"

------解决方案--------------------
<script>function h(obj,url){obj.style.behavior='url(#default#homepage)';obj.setHomePage(url);}
document.oncontextmenu=function(){return false;}
document.onbeforecopy=function(){return false;}
document.onselectstart =function(){document.selection.empty();return false;}
</script>

防止页面右击和选取复制