연구실(키네틱) 프로젝트

kity.html & js doc

FireStone 2020. 2. 18. 16:41

.getElementsByTagName()

.getElementsByTagName()는 특정 태그를 가진 모든 요소를 선택합니다. 선택된 요소는 유사 배열 객체로 반환됩니다.

 

document.getElementsByTagName("div").item(13).innerHTML = strCode;

14번째 div 태그의 html contents를 strCode로 대치

Get the HTML content of the 14th <div> element (index 13) inside the document 

실행 예시

https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_nodelist_item_doc