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>

  • 相关阅读:
    AgilePoint模型驱动BPM(业务流程管理)介绍
    WF从入门到精通(第五章):workflow跟踪 (转)
    昕友.亿达PM项目管理软件 结构草图
    C++之虚拟继承
    Using Batch Parameters
    Static 关键字 C and C++
    something about code coverage planning
    C++ 虚函数表
    C++ FAQ for me
    Drag and Drop in WPF
  • 原文地址:https://www.cnblogs.com/acafaxy/p/1995819.html
Copyright © 2011-2022 走看看