zoukankan      html  css  js  c++  java
  • js实现右击

    <!DOCTYPE html>
    <html>
      
     <head>
     <meta charset="UTF-8">
     <title></title>
     <style type="text/css">
     #menu {
     height: 200px;
      50px;
     border: 1px solid gray;
     
     padding: 10px;
     display: none;
     position: absolute;
     }
      
     ul,
     li {
     margin: 0;
     padding: 0;
     list-style-type: none;
     line-height: 40px;
     }
     </style>
     </head>
      
     <body>
     <div id="menu">
     <ul>
     <li>复制</li>
     <li>粘贴</li>
     <li>运行</li>
     <li>工具</li>
     <li>帮助</li>
     </ul>
     </div>
     </body>
     <script type="text/javascript">
     var menu = document.getElementById("menu");
     document.oncontextmenu = function(ev) {
     var oEvent = ev || event;
     //自定义的菜单显示
     menu.style.display = "block";
     //让自定义菜单随鼠标的箭头位置移动
     menu.style.left = oEvent.clientX + "px";
     menu.style.top = oEvent.clientY + "px";
     //return false阻止系统自带的菜单,
     //return false必须写在最后,否则自定义的右键菜单也不会出现
     return false;
      
     }
     //实现点击document,自定义菜单消失
     document.onclick = function() {
      
     menu.style.display = "none";
     }
     </script>
      
    </html>
  • 相关阅读:
    B1028人口普查
    B1004成绩排名
    B1041考试座位号
    A1009 Product of Polynomials多项式相乘
    A1002 A+B for Polynomials 多项式相加
    B1010一元多项式求导
    A1065 A+Band C(64 bit)
    A1046 Shortest Distance 最短路径
    排序
    windows 平台使用wireshark命令行抓包
  • 原文地址:https://www.cnblogs.com/wangqiao170/p/8968201.html
Copyright © 2011-2022 走看看