document.getElementById

개발/실전 2014. 3. 12. 16:00

 영어를 해석하는 것과 의미는 같습니다.


document 문서에서
get element 요소(태그)를 얻겠다 
by id 아이디 값으로

<div id="test"></div> 에 접근하는 방법은

document.getElementById('test'); 입니다.

document 문서에
write 쓰겠다.

document.write('hello'); // => hello 출력

'개발 > 실전' 카테고리의 다른 글

자바스크립트 - screen 객체와 document 객체 , link 객체와, anchor 객체  (0) 2014.03.13
&nbsp &It &gy &amp &quot  (0) 2014.03.12
<% %>와 <script>차이 점 <%! 설명  (0) 2014.03.12
JOIN과 UNION  (0) 2014.03.11
location 객체  (0) 2014.03.11