| 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: pink;
- }
- </style>
- </head>
- <body>
- <div id="box"></div>
- <script>
- // 获取元素
- var box = document.getElementById("box");
- // 绑定事件
- // 鼠标右键点击事件 contextmenu
- box.oncontextmenu = function(){
- console.log("鼠标右键点击了");
- // 阻止默认事件
- return false;
- }
- </script>
- </body>
- </html>
|