¾Æ·¡½ºÅ©¸³Æ®¸¦ ÇØ´õ¾Æ·¡¿¡ ºÙÀÌ½Ã¸é ¾ðÁ¦µçÁö ÁÂÇ¥°ªÀ» Ãâ·ÂÇÏ¿© º¸¿©ÁÙ¼öÀְԵ˴ϴÙ.
À¥µðÀÚÀÎÀ» ÇÒ¶§ Å×À̺í¾î¶²ºÎºÐÀÌ ¸îÇȼ¿Â÷ÀÌ°¡ ³ª´ÂÁö ¸¶Ã纼¼öÀÖ°ÚÁÒ ^^
<html>
<head>
<title>ÇØÇÇCGI</title>
//--ÇØ´õ¾Æ·¡ºÒ¿©Áö´Â ÀÚ¹Ù½ºÅ©¸³Æ®--//
<script>
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Roy Marchand | http://www.expertsrt.com */
function showit() {
document.forms['theform'].xcoord.value=event.x;
document.getElementById('spanx').innerHTML='x = '+event.x;
document.forms.theform.ycoord.value=event.y;
document.getElementById('spany').innerHTML='y = '+event.y;
}
function showitMOZ(e) {
document.forms['theform'].xcoord.value=e.pageX;
document.getElementById('spanx').innerHTML='x = '+e.pageX;
document.getElementById('spany').innerHTML='y = '+e.pageY;
document.forms.theform.ycoord.value=e.pageY;
}
if (!document.all) {
window.captureEvents(Event.CLICK);
window.onclick=showitMOZ;
} else {
document.onclick=showit;
}
</script>
//--ÇØ´õ¾Æ·¡ºÒ¿©Áö´Â ÀÚ¹Ù½ºÅ©¸³Æ®³¡--//
</head>
<body>
//--¹Ùµð¾Æ·¡ Àû¿ë½ÃÅ°¸éµÇ´Â Æû--//
<h4>¹è°æ ¾Æ¹«°÷À̳ª Ŭ¸¯Çϼ¼¿ä.</h4>
<form name="theform">
x = <input name="xcoord" type="text" readonly size="5">
y = <input name="ycoord" type="text" readonly size="5">
</form>
<p>
<span id="spanx"> </span> <span id="spany"> </span>
|