<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=GB2312" />
<title> window.event应用</title>
<script>
function body_onclick(){
alert("鼠标点击的坐标是\r\nx:"+event.y+", y:"+event.y);
}
</script>
</head>
<body style="overflow:auto; padding:0px; margin:0px;" onclick="body_onclick();">
</body>
</html>