$(
"a"
).click(
function
(event) {
alert(
"Current mouse position: "
+ event.pageX +
", "
+ event.pageY );
//获取鼠标当前相对于页面的坐标
return
false
;
//阻止链接跳转
});