事件对象3
Posted jiumen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了事件对象3相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> body margin: 0; height: 1000px; #box margin: 100px; margin-top: 500px; width: 200px; height: 200px; background-color: red; </style> </head> <body> <div id="box"> </div> <script> var box = document.getElementById(‘box‘); box.onclick = function (e) e = e || window.event; // 获取的鼠标在浏览器的可视区域的坐标 // console.log(e.clientX); // console.log(e.clientY); // 鼠标在当前页面的位置 console.log(e.pageX); console.log(e.pageY); </script> </body> </html>
以上是关于事件对象3的主要内容,如果未能解决你的问题,请参考以下文章
js事件Event对象(自定义事件对象 CustomEvent)