123456789101112131415161718192021222324252627282930 |
- <!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;
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- <script>
- var oBox = document.getElementsByClassName("box");
- oBox = oBox[0];
- // 鼠标移入事件
- oBox.onmouseenter = function(){
- console.log("鼠标移入");
- }
- // 鼠标移出事件
- oBox.onmouseleave = function(){
- console.log("鼠标移出");
- }
- </script>
- </body>
- </html>
|