Get the coordinates of the mouse on the page

Source: Internet
Author: User

Get the coordinates of the mouse on the page:

I personally don't understand compactmode, the so-called rendering mode.

Code
<SCRIPT type = "text/JavaScript">
<! --
// Add an onclick event for mouse clicks on the page.
Document. onclick = function (E)
{
VaR target = (E & e.tar get) | (event & event. srcelement );
// Click the coordinates on the page
VaR axisx = Window. event. clientx;
VaR asixy = getscrolltop () + window. event. clienty;
}


// Obtain the height of the scroll bar
Function getscrolltop (){
VaR scrollpos = 0;
If (typeof window. pageyoffset! = 'Undefined '){
Scrollpos = Window. pageyoffset;
}
Else if (typeof upload Doc ument. compatmode! = 'Undefined '&&
Window.doc ument. compatmode! = 'Background '){
Scrollpos = registry.document.doc umentelement. scrolltop;
}
Else if (typeof alert Doc ument. Body! = 'Undefined '){
Scrollpos = zookeeper Doc ument. Body. scrolltop;
}
Return scrollpos;
}
// -->
</SCRIPT>

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.