.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
'연구실(키네틱) 프로젝트' 카테고리의 다른 글
eval 함수 변환 기록 (0) | 2020.09.21 |
---|---|
예제 만들기-에펙 영상 (0) | 2020.04.08 |
javascript 함수 (0) | 2020.03.25 |
FFexample_line_second.js document (0) | 2020.02.18 |
글자 및 단어 단위의 키네틱 ~ 논문 <예제 1> (0) | 2020.02.12 |