12345678910111213141516171819202122232425262728 |
- <!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: 300px;
- height: 200px;
- border:2px solid #000;
- }
- </style>
- </head>
- <body>
- <div id="box"></div>
- <script>
- var box = document.getElementById("box");
- console.log(box.offsetWidth);//xxx.offsetWidth 元素宽度
- console.log(box.offsetHeight);//xxx.offsetHeight 元素高度
- box.onclick = function(event) {
- console.log(event.clientX,event.clientY);
- // clientX 当前元素点击时x轴位置坐标
- // clientY 当前元素点击时y轴位置坐标
- }
- </script>
- </body>
- </html>
|