Ä÷º¼Ç¿¡ Æ÷ÇԵǾî ÀÖ´Â °³Ã¼µéÀÇ °¹¼ö¸¦ ¼³Á¤Çϰųª ¹ÝȯÇÑ´Ù.
IE6ºÎÅÍ comment °³Ã¼¿¡µµ Àû¿ëµÈ´Ù.
window.length ¼Ó¼ºÀº À©µµ¿ì °³Ã¼¿¡ Æ÷ÇԵǾî ÀÖ´Â frameµéÀÇ °¹¼ö¸¦ ¹ÝȯÇÑ´Ù.
comment.length ¼Ó¼ºÀº °³Ã¼¿¡ Æ÷ÇԵǾî ÀÖ´Â ±ÛÀÚ¼ö¸¦ ¹ÝȯÇÑ´Ù.
form.length ¼Ó¼º¼¿¡´Â input type=image ¿¤·¹¸àÆ®¸¦ Á¦¿ÜÇÑ´Ù. form°³Ã¼ÀÇ ¸ðµç ¿¤·¹¸àÆ®¸¦ ÂüÁ¶Çϱâ À§Çؼ´Â children Ä÷º¼ÇÀ» »ç¿ëÇÏ¿©¾ß ÇÑ´Ù.
Window CE¿¡¼¸¸Àº ÀÌ Ä÷º¼ÇÀº Ç×»ó ºó°ªÀÌ´Ù.
ÀÌ ¼Ó¼ºÀº (¿µ¾î)DOM Level 1(Document Object Model Level 1)¿¡¼ Á¤ÀǵǾú´Ù.
°³Ã¼ | script | HTML | ±Ô°Ý | IE |
---|
<SCRIPT> str='document.all.length='+document.all.length+'<BR>'; str+='document.anchors.length='+document.anchors.length+'<BR>'; str+='document.images.length='+document.images.length+'<BR>'; str+='top.window.length='+top.window.length+'<BR>'; str+='document.body.children.length='+document.body.children.length+'<BR>'; document.write(str); </SCRIPT>