°³Ã¼·ÎºÎÅÍ ÁöÁ¤µÈ ÀÚ½Ä ³ëµå¸¦ Á¦°ÅÇÑ´Ù.
¹Ýȯ°ª oValÀº Á¦°ÅµÈ °³Ã¼ÀÇ ÂüÁ¶ÀÌ´Ù.
Á¦°ÅµÉ ÀÚ½ÄÀº ¸ðüÀÇ Á÷Á¢ÀûÀÎ ÀÚ½ÄÀ̾î¾ß ÇÑ´Ù.
ÀÌ ¸Þ¼µå´Â ·±Å¸ÀÓ(run time)¿¡ Á¢¼ÓÇÒ ¼ö ÀÖ´Ù. ·±Å¸ÀÓ¿¡¼ ÀÌ ¿¤·¹¸àÆ®°¡ Á¾·áűװ¡ ÆĽ̵DZâ Àü¿¡ Á¦°ÅµÇ¸é, ¹®¼ÀÇ Áö¿ªµéÀº Ç¥ÇöµÇÁö ¾ÊÀ» ¼ö ÀÖ´Ù.
ÀÌ ¸Þ¼µå´Â IE6¿¡¼´Â attribute °Ôü¿¡µµ Àû¿ëµÈ´Ù.
°³Ã¼ | script | IE |
---|
ÀÌ ¸Þ¼µå´Â (¿µ¹®)DOM1(W3C Document Object Model Level 1)¿¡¼ Á¤ÀǵǾú´Ù.
removeChild ¸Þ¼µå¸¦ »ç¿ëÇÏ¿©div°³Ã¼ÀÇ ÀÚ½Ä b ¿¤·¹¸àÆ®¸¦ Á¦°ÅÇÑ´Ù. ÀÌ¹Ì Á¦°ÅµÇ¾úÀ¸¸é try..catch..·Î ¿À·ù¸¦ Á¡°ËÇÑ´Ù.
<HEAD> <SCRIPT> function removeElement(){ try { var oChild=Div1.children(0); Div1.removeChild(oChild); } catch(x) { alert('±½Àº ±ÛÀÚÀÇ °³Ã¼°¡ ÀÌ¹Ì Á¦°ÅµÇ¾ú´Ù.') } } </SCRIPT> <BODY> <DIV id=Div1 onclick="removeElement()" style="border:solid 1 blue;background:ffa;width:400">¿©±â¸¦ Ŭ¸¯Çϸé <B style=color:red>Àû»ö ±½Àº ±ÛÀÚ°¡</B> Á¦°ÅµÈ´Ù.</DIV> <DIV onclick="document.location.reload();" style="border:solid 1 green;background:aff;width:400">´Ù½Ã ½ÇÇèÇϱâ À§ÇÑ »õ·Î°íħ</DIV> </BODY>