| 1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <div class="box">
- hello world
- </div>
- <script>
- var oBox = document.getElementsByClassName("box");
- oBox[0].oncontextmenu = function(){
- console.log("你右击了");
- return false; // 阻止默认的右击菜单显示
- }
- </script>
- </body>
- </html>
|