1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box{
- width: 200px;
- height: 200px;
- background-color: red;
- margin:100px auto;
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- <script>
- var oBox = document.getElementsByClassName("box")[0];
- // 参数重的e 为事件对象
- oBox.oncontextmenu = function(e){
- // 阻止浏览器默认行为
- e.preventDefault();
- console.log(e.clientY,e.clientX);
- }
- </script>
- </body>
- </html>
|