메뉴 닫기

[HTML] JavaScript Method(작성중)

  • 요소를 찾을때 사용
함수설명
getElementById()특정 id 속성값에 해당하는 요소를 반환<div id=”lasthat”>
getElementById(“lasthat”);
getElementsByName()특정 name 속성값에 해당하는 요소를 모두 반환<input type=”text” name=”lasthat”>
getElementsByName(“lasthat”);
getElementsByTagName()특정 태그 이름과 일치하는 모든 요소를 반환<input type=”text”>
getElementsByTagName(“input”);

0 0 votes
Article Rating
구독
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x