Javascript determines the cursor coordinates of the event to be triggered, relative to the customer area and the screen

Source: Internet
Author: User

Use of coordinates relative to the customer zone:

 

<HTML>
<Head>
<SCRIPT type = "text/JavaScript">
Function show_coords (Event)
{
X = event. clientx
Y = event. clienty
Alert ("X coordinate:" + x + ", Y coordinate:" + Y)
}
</SCRIPT>
</Head>

<Body onmousedown = "show_coords (event)">

<P> click in the document. A message box displays the X and Y coordinates of the mouse pointer. </P>

</Body>
</Html>

 

Use of coordinates relative to the screen:

 

<HTML>
<Head>

<SCRIPT type = "text/JavaScript">
Function coordinates (Event)
{
X = event. screenx
Y = event. screeny
Alert ("x =" + x + "Y =" + Y)
}

</SCRIPT>
</Head>
<Body onmousedown = "coordinates (event)">

<P>
Click a location in the document. The message box displays the X and Y coordinates of the pointer relative to the screen.
</P>

</Body>
</Html>

 

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.