| 1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <style>
- div{
- width: 300px;
- height: 300px;
- margin: 10px auto;
- background-color: red;
- }
- </style>
- </head>
- <body>
- <div id="myDiv">
- </div>
- <script>
- let myDiv = window.document.getElementById("myDiv");
- myDiv.onmouseover=function (){
- console.log("鼠标移入了div框")
- }
- myDiv.onmouseout=function (){
- console.log("鼠标移出了div框........")
- }
- console.log(location.host);
- </script>
- </body>
- </html>
|