JS获取鼠标在页面中点击的坐标

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <title>Screen Coordinates Example</title>
 5     </head>
 6     <body style=" 1440px;height: 1000px;">
 7         <div id="div"></div>
 8         <script type="text/javascript">
 9             let body = document.getElementsByTagName('body');
10             body[0].onclick = (e) => {
11                 console.log(e.screenX, e.screenY)
12             }
13         </script>
14     </body>
15 </html>
原文地址:https://www.cnblogs.com/lyt520/p/13454756.html