12345678910111213141516171819202122232425262728293031323334 |
- <!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>
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- .box {
- width: 300px;
- height: 400px;
- margin-top: 40px;
- margin-left: 200px;
- background: aqua;
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- <script>
- var box = document.querySelector(".box");
- console.log(box);
- console.log(box.offsetWidth); // 获取元素宽度
- console.log(box.offsetLeft); // 获取元素距离左侧的距离
- console.log(box.offsetTop); // 获取元素距离顶部的距离
- console.log(box.offsetHeight); // 获取元素高度
- </script>
- </body>
- </html>
|