码迷,mamicode.com
首页 > Web开发 > 详细

如何使用js屏蔽鼠标右键

时间:2015-03-17 19:55:16      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

<script type="text/javascript">
            /*
               //for ie6,7,8,9,10 and webkit and opera
                 document.oncontextmenu = function () {
                 window.event.returnValue = false;
                 }
           */
              //for ie6,7,8,9,10 and webkit and opera and firefox
                 document.oncontextmenu=function(e){
                 return false;
                 }
</script>




http://wangye.org/blog/archives/932/

如何使用js屏蔽鼠标右键

标签:

原文地址:http://www.cnblogs.com/xiaolang1/p/4345073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!