获取鼠标的当前位置
Posted tuna
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取鼠标的当前位置相关的知识,希望对你有一定的参考价值。
1、JQ获取鼠标的当前位置
$(‘#div1‘).mousemove(function(e){ var xx=e.originalEvent.x || e.originalEvent.layerX || 0; var yy=e.originalEvent.y || e.originalEvent.layerY || 0; $(this).text(xx+‘,‘+yy); } ) //jquery中event.originalEvent指向事件原始对象
2.原生JS获取当前鼠标位置
关键是在onmousemove中实时获取PageX和PageY
IE不支持,改用clientX+scrollLeft-clientLeft
document.onmousemove=function(ev){ ev=ev||window.event; var mousePos=mouseCoords(ev); document.getElementById("p").innerhtml=mousePos.x+","+mousePos.y; //显示到P标签中 } function mouseCoords(ev){ if(ev.PageX &&ev.PageY){ return {x:ev.PageX,y:ev.PageY} } //做兼容 d=document.documentElement||document.body;
reutrn { x:ev.clientX+d.scrollLeft-d.clientLeft, y:ev.clientY+d.scrollTop-d.clientTop }
}
以上是关于获取鼠标的当前位置的主要内容,如果未能解决你的问题,请参考以下文章