Do Not Think!!!

Posted
Filed under 01010101
꽤 오래전에 okjspIE에서 getElementById 동작 방식이 이상하다는 글이 올라온적이 있었습니다.
시간이 한참 지났지만, 실제 어떻게 동작하는지 한번 확인해봤는데요...

[code]<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>getElementById test</title>
</head>

<body>
<form name="test" id="test1"></form>
<div id="test"></div>

<script type="text/javascript">
alert(document.getElementById("test").id);
</script>
</body>
</html>[/code]
간단한 코드를 만들어서 테스트를 해봤어요.

결과를 보면... 당황스럽네요...
FF에서 실행 한 결과 (FF 3.0.6)
사용자 삽입 이미지









IE에서 실행한 결과 (IE 7)
사용자 삽입 이미지








어째 IE에서는 원하는 결과가 나오지 않네요...

원하는 결과는
[code]<div id="test"></div>[/code] 를 가져오는건데...

IE에서는 엉뚱하게도
[code]<form name="test" id="test1"></form>[/code] 를 가져오네요...

IE에서는 getElementById()를 실행하는데, id 속성뿐만이 아니라, name 속성도 검사를 하는 듯 합니다.