JS and jquery to get the current mouse x, y coordinates of the position of the code _jquery

Source: Internet
Author: User
Copy Code code as follows:

<div id= "Testdiv" > placed above me </div>
<script type= "Text/javascript" >
$ (' #testDiv '). 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);
});
</script>

JavaScript Gets the coordinates of the mouse's current position
Mouse slide shows the current position of the mouse coordinates, mainly the onmousemove function.
Copy Code code as follows:

<meta http-equiv= "Content-type" Conte Nt= "text/html; charset=gb2312 "/>
<title>javascript get mouse position </title>
<body>
<s cript>
Function mouseMove (ev)
{
ev= ev | | | window.event;
var mousepos = mousecoords (EV);
document.getElementById ("xxx"). Value = mousepos.x;
document.getElementById ("yyy"). Value = Mousepos.y;
}
Function mousecoords (ev)
{
if (Ev.pagex | | ev.pagey) {
Return {x:ev.pagex, y:ev.pagey};
}
return{
X:ev.clientx + document.body.scrollleft-document.body.clientleft,
Y:ev.clienty + documen T.body.scrolltop-document.body.clienttop
};
}
Document.onmousemove = MouseMove;
</script>
Mouse x-axis:
<input id=xxx type=text>
Mouse y axis:
<input id=yyy type=text> </body>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.