JavaScript-4.6鼠标事件监听,获取鼠标坐标window.event---ShinePans
时间:2014-06-18 06:18:22
收藏:0
阅读:274
<html>
<head>
<meta http-equiv="content-type" content="text/html" charset=GB2312"/>
<title> 4.5 window.event应用 </title>
<script>
function body_onclick(){
alert("鼠标点击的坐标是\r\nx:"+event.x+",y:"+event.y);
}
</script>
</head>
<body style="overflow:auto;padding:0px;margin:0px;"onclick="body_onclick();">
</body>
</html>
获取鼠标的坐标
课连续点击
JavaScript-4.6鼠标事件监听,获取鼠标坐标window.event---ShinePans,布布扣,bubuko.com
评论(0)