| 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: 300px;
- margin-left: 30px;
- margin-top: 60px;
- background: aqua;
- }
- </style>
- </head>
- <body>
- <div id="box"></div>
- <script>
- var box = document.getElementById("box");
- console.log(box);
- // box.style.marginLeft = 100 + 'px';
- console.log(box.offsetHeight); // 获取元素自身高度
- console.log(box.offsetWidth); // 获取元素自身宽度
- console.log(box.offsetLeft); // 获取元素到左侧的距离
- console.log(box.offsetTop); // 获取元素到顶部的距离
- </script>
- </body>
- </html>
|