12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!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;
- list-style: none;
- text-decoration: none;
- box-sizing: border-box;
- }
- #box {
- width: 300px;
- height: 400px;
- background: pink;
- margin-top: 100px;
- margin-left: 200px;
- }
- </style>
- </head>
- <body>
- <div id="box"></div>
- <script>
- var box = document.getElementById("box");
- console.log(box);
- // 获取元素宽度
- console.log(box.offsetWidth)
- // 获取元素高度
- console.log(box.offsetHeight)
- // 获取元素距离顶部的高度
- console.log(box.offsetTop)
- // 获取元素距离左侧的距离
- console.log(box.offsetLeft)
- </script>
- </body>
- </html>
|