가장 간단하게 해결할 수 있는 방법이 있었다.
IE에서는 element에 id만 둬도 select 하는데 아무런 문제가 없었지만
파폭, 크롬, 사파리 등에서는 select 하지 못하는 오류가 발생하였다.
Firefox에서 syntax error를 발생키지만 간단한 방법으로 해결할 수 있었는데,
<div id="testDiv" name="testDiv">1</div>
<div id="testDiv" name="testDiv">2</div>
이렇게 간단한데;; 모르면 헤멘다는.....
<script type="text/javascript"> function testFnc() { var el = document.getElementsByName("testDiv"); alert(el.length); } </script> <body> <div id="testDiv" name="testDiv">1</div> <div id="testDiv" name="testDiv">2</div> <div id="testDiv" name="testDiv">3</div> <div id="testDiv" name="testDiv">4</div> <div id="testDiv" name="testDiv">5</div> <input type="button" value="버튼" onclick="testFnc();" /> </body> |
'Dev Story > dev' 카테고리의 다른 글
javascript - split (0) | 2009.03.11 |
---|---|
log4j - log4j.properties 변경 (0) | 2009.03.09 |
2009년 정보처리기사 1회 필기 가답안 (0) | 2009.03.02 |
winxp - 원격 데스크탑 복수로 연결하기(1인 이상) (0) | 2009.02.19 |
silverlight - From A to Z... 50 Silverlight Applications (0) | 2009.02.12 |