°³Ã¼°¡ ÀڽĵéÀ» °¡Áö°í Àִ°¡¸¦ ³ªÅ¸³»´Â ºÎ¿ï°ªÀ» ¹ÝȯÇÑ´Ù.
°³Ã¼°¡ HTML ELEMENTµéÀ̳ª TextNode °³Ã¼µéÀ» °¡Áö°í ÀÖÀ¸¸é, childNodes Ä÷º¼ÇÀ» ÅëÇÏ¿© Á¢¼ÓÇÒ ¼ö ÀÖ´Ù.
ÀÌ ¸Þ¼µå´Â IE6¿¡¼ºÎÅÍ attribute °³Ã¼¿¡µµ Àû¿ëµÈ´Ù.
°³Ã¼ | script | IE |
---|
ÀÌ ¸Þ¼µå´Â (¿µ¹®)DOM1(W3C Document Object Model Level 1)¿¡¼ Á¤ÀǵǾú´Ù.
<DIV id=showA title="°á°ú">°á°ú Ç¥½Ãâ</DIV> <BUTTON onClick="doShow()">Á¡°ËÇÑ´Ù</BUTTON> <SCRIPT> function doShow(){ coll=document.all; hasChild=noChild=''; for (i=0;i< coll.length;i++){ if(coll[i].hasChildNodes()) hasChild+=coll[i].nodeName+', '; else noChild+=coll[i].nodeName+', '; } str='<FONT color=blue>ÀÚ½ÄÀÌ ÀÖ´Â ¿¤·¹¸àÆ® :</FONT> '+hasChild+'<BR>'; str+='<FONT color=red>ÀÚ½ÄÀÌ ¾ø´Â ¿¤·¹¸àÆ® :</FONT> '+noChild+'<BR>'; showA.innerHTML=str; } </SCRIPT>