• 鼠标右键屏蔽


    对于企业网站,客户有时候会有这样的需求,既页面内容不允许复制,既右键屏蔽,这里有一段简单的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>

  • 相关阅读:
    Dubbo2.0
    Dubbo--RPC框架
    ActiveMQ消息队列
    quartz开源任务调度框架
    webService
    crud最常用
    springBoot第三天
    springmvc--依赖
    springBoot第二天
    pom.xml和settings.xml的下载优先级
  • 原文地址:https://www.cnblogs.com/acafaxy/p/1995819.html
Copyright © 2020-2023  润新知