¿¤·¹¸àÆ®ÀÇ ÀÔ·Â ÆÄ¶ó¸ÞÅÍÀÇ °ªÀ» ¹ÝȯÇϰųª ¼³Á¤ÇÑ´Ù.
À̼ӼºÀº paramÀÇ valueÀº IE6ºÎÅÍ Àû¿ëµÇ¸ç, IE6ºÎÅÍ Àбâ/¾²±â°¡ Àû¿ëµÈ´Ù.
| °³Ã¼ | script | HTML | ±Ô°Ý | IE |
|---|
ÀÌ ¼Ó¼ºÀº (¿µ¹®) W3C DOM Level 1(Document Object Model)¿¡¼ Á¤ÀǵǾú´Ù.
<OBJECT classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95">
<PARAM name="FileName" valueType="ref" type="video/*"
value="http://msdn.microsoft.com/workshop/samples/author/behaviors/media/28movie.asf"/>
</OBJECT><BR>
<SCRIPT>
str='document.all.tags("param")[0].name=<SPAN style=color:blue>'+document.all.tags('param')[0].name+'</SPAN><BR>';
str+='document.all.tags("param")[0].valueType=<SPAN style=color:blue>'+document.all.tags('param')[0].valueType+'</SPAN><BR>';
str+='document.all.tags("param")[0].type=<SPAN style=color:blue>'+document.all.tags('param')[0].type+'</SPAN><BR>';
str+='document.all.tags("param")[0].value=<DIV style=color:blue;padding-left:2em>';
str+=document.all.tags('param')[0].value+'</DIV>';
document.write(str);
</SCRIPT>