码迷,mamicode.com
首页 > 其他好文 > 详细

事件对象练习

时间:2017-09-10 11:23:03      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:page   doc   对象   document   target   alert   事件对象   练习   lang   

<!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>

事件对象练习

标签:page   doc   对象   document   target   alert   事件对象   练习   lang   

原文地址:http://www.cnblogs.com/xlhlcy/p/7500353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!