zoukankan      html  css  js  c++  java
  • 鼠标右键屏蔽

    对于企业网站,客户有时候会有这样的需求,既页面内容不允许复制,既右键屏蔽,这里有一段简单的JS可以实现:

    <script type="text/javascript">
                   <!--
                    if (window.Event)
                        document.captureEvents(Event.MOUSEUP);

                    function nocontextmenu() {
                        event.cancelBubble = true
                        event.returnValue = false;

                        return false;
                    }

                    function norightclick(e) {
                        if (window.Event) {
                            if (e.which == 2 || e.which == 3)
                                return false;
                        }
                        else
                            if (event.button == 2 || event.button == 3) {
                                event.cancelBubble = true
                                event.returnValue = false;
                                return false;
                            }

                    }

                    document.oncontextmenu = nocontextmenu;  // for IE5+
                    document.onmousedown = norightclick;  // for all others
                //-->
                </script>

  • 相关阅读:
    论语言思维的差异
    lua经典问题
    跳槽的故事
    未来一年计划
    腾讯面试题 找重复的数
    nodejs学习
    node记录
    mysql 常用总结
    ubuntu 服务器搭建汇总
    ubuntu下安装golang
  • 原文地址:https://www.cnblogs.com/zongxialian/p/1997440.html
Copyright © 2011-2022 走看看