| 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;
- position: absolute;
- top: 200px;
- left: 100px;
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- <script>
- // 获取元素
- var box = document.querySelector(".box");
- // 获取元素的偏移量
- // offsetLeft属性:元素定位后 元素的左偏移量
- console.log(box.offsetLeft);
- // offsetTop属性:元素定位后 元素的上偏移量
- console.log(box.offsetTop);
- </script>
- </body>
- </html>
|