事件对象练习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了事件对象练习相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>事件对象练习</title>
<style>
body{
height: 400px;
}
</style>
</head>
<body>
<script>
document.onclick = function(event){
// alert(event.target);
var event = event || window.event;
// console.log(event);
console.log(event.clientY);

// console.log(event.clientX);
console.log(event.pageY);
console.log(event.screenY);
}
</script>
</body>
</html>

以上是关于事件对象练习的主要内容,如果未能解决你的问题,请参考以下文章

事件对象练习

iOS边练边学--触摸事件以及能够拖拽的UIView的练习

0515JS事件函数操作document对象练习

winform练习-通过遍历Control容器中的对象统一委托事件-楼盘选择器

JS DOM事件

js 事件