»ç¿ëÀÚ°¡ ÁßÁö ´ÜÃ߸¦ Ŭ¸¯Çϰųª À¥ ÆäÀÌÁö¸¦ ´ÝÀ» ¶§ ¹ß»ýÇÑ´Ù.
![]() À̺¥Æ® ¼Ó¼º |
document.onstop=handler | JScript ¸¸- |
|---|---|---|
| document.onstop=GetRef('handler') | VBScript 5.0- | |
| ¸í¸íµÈ ½ºÅ©¸³Æ® | <SCRIPT for=document event=onstop> | Explorer- |
| Bubbles | ¾øÀ½ |
|---|---|
| Ãë¼Ò | ºÒ°¡ |
| ¹ß»ý ¿øÀÎ |
|
| µðÆúÆ® ÀÛ¿ë | À̺¥Æ®¿Í ¿¬°üµÈ ÀÛ¿ëÀ» ½ÃÀÛÇÑ´Ù. |
| HTML ±Ô°Ý | ºñ±Ô°Ý IE È®Àå. |
DHTML °³Ã¼ ¸ðµ¨¿¡¼ À̺¥Æ®Ã³¸®ÀÚ´Â ÆÄ¶ó¸ÞÅ͵éÀ» Á÷Á¢ ¹ÞÁö´Â ¸øÇصµ, event°³Ã¼ÀÇ Äõ¸®¸¦ »ç¿ëÇÒ ¼ö ÀÖ´Ù.
| altKey | ALT ۰¡ ´·È´Â°¡¸¦ ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù. |
| altLeft | ¿ÞÂÊ ALT ۰¡ ´·È´Â°¡¸¦ ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù. |
| ctrlLeft | ¿ÞÂÊ CTRL ۰¡ ´·È´Â°¡¸¦ ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù. |
| shiftLeft | ¿ÞÂÊ SHIFT ۰¡ ´·È´Â°¡¸¦ ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù. |
| type | À̺¥Æ® °³Ã¼ÀÇ À̺¥Æ® ¸íĪÀ» ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù. |
onstop À̺¥Æ®´Â onbeforeunload À̺¥Æ® ´ÙÀ½¿¡, onunload À̺¥Æ® ¹ß»ý ÀÌÀü¿¡ ¹ß»ýÇÑ´Ù.
| °³Ã¼ | script | HTML | IE |
|---|
ºê¶ó¿öÀúÀÇ 'ÁßÁö' ´ÜÃ߸¦ ´·¯º¸¶ó.
<SCRIPT> document.onstop=stopThis; window.onload=initialize; var timer; function initialize(){ timer=window.setInterval('clock()',1); } function clock(){ showTime.innerHTML=new Date().toLocaleString(); } function stopThis(){ showEvent.innerText='('+event.type+') À̺¥Æ® ¹ß»ý'; window.clearInterval(timer); } </SCRIPT> <DIV id="showTime" style="height:1.2em;width:300"></DIV> <DIV id="showEvent" style="height:1.2em;width:300">°á°ú Ç¥½Ãâ</DIV>