ÁöÁ¤µÈ ÁÂÇ¥ iX, iY¿¡ ÀÖ´Â ¿¤·¹¸àÆ®¸¦ ¹ÝȯÇÑ´Ù.

Àμö/ÆĶó¸ÞÅÍ
iX
ÇʼöÀûÀÎ ¿ä¼ÒÀ̸ç, ¼öÆòÁÂÇ¥¸¦ Çȼ¿´ÜÀ§·Î ³ªÅ¸³»´Â Á¤¼ö°ªÀÌ´Ù.
iY
ÇʼöÀûÀÎ ¿ä¼ÒÀ̸ç, ¼öÁ÷ÁÂÇ¥¸¦ Çȼ¿´ÜÀ§·Î ³ªÅ¸³»´Â Á¤¼ö°ªÀÌ´Ù.
¹Ýȯ°ª

¹Ýȯ°ª oValÀº ÇØ´ç ¿¤·¹¸àÆ® °³Ã¼ÀÌ´Ù.

Ư±â

ÁÂÇ¥´Â »ç¿ëÀÚ ÁÂÇ¥µé·ÎºÎÅÍ Á¦°øµÈ´Ù. »ç¿ëÀÚ Áö¿ªÀÇ ¿ÞÂÊ »ó´ÜÀÇ ÁÂÇ¥´Â 0, 0ÀÌ´Ù.
elementFromPoint ¸Þ¼­µå°¡ ±â´ëÇÏ´Â È¿°ú¸¦ ³»±â À§Çؼ­´Â ÁöÁ¤µÈ ÁÂÇ¥ iX, iY¿¡ ÀÖ´Â °³Ã¼³ª ¿¤·¹¸àÆ®´Â ºê¶ó¿ìÀú¿¡¼­ Áö¿øµÇ¾î¾ß ÇÏ°í ¸¶¿ì½º À̺¥Æ®¿¡ ¹ÝÀÀÇÏ¿©¾ß ÇÑ´Ù.

Àû¿ë
°³Ã¼scriptIE
ÂüÁ¶
clientX clientY

¹®¼­ À§ÀÇ °³Ã¼µéÀ» Ŭ¸¯ÇØ º¸¶ó.

<SCRIPT>
function mouseCheck(){
  showB.innerHTML='type='+event.type+
    '<BR>document.elementFromPoint(event.screenX,event.screenY).nodeName='+
    document.elementFromPoint(event.screenX,event.screenY).nodeName+
    '<BR>screenX,screenY=('+event.screenX+','+event.screenY+')';
    '<BR>x,y=('+event.x+','+event.y+')';
}

function moveCheck(){
  showA.innerHTML='type='+event.type+'<BR> X,Y=('+event.screenX+','+event.screenY+')';
}
document.onmousedown=mouseCheck;
document.onmousemove=moveCheck;
</SCRIPT>
<DIV span id=showA style=color:blue></DIV>
<DIV span id=showB style=color:brown></DIV>