본문 바로가기
JS/Javascript

getElementBy 메소드(JavaScript)

by 싸공 2020. 8. 4.
<body>
    <h1 id="h1_id" class="h1_class">Hello World!!</h1>
    <h1 id="h1_id">lorem</h1>
</body>


<script>
        const x = document.getElementById("h1_id");
        const x1 = document.getElementById("");
        const y = document.getElementsByClassName("h1_class");
        const z = document.getElementsByTagName("h1");

        console.log("getElementById"x);
        console.log("getElementById"x1);
        console.log("getElementsByClassName"y);
        console.log("getElementsByTagName"z);
        
</script>





getElementById() 메소드

1. 해당 id 속성을 가진 요소를 리턴하고 지정된 id를 가진 요소가 없으면 null을 반환한다.

2. 지정된 id가 여러 개일 경우첫 번쨰 요소를 리턴한다.


getElementByClassName() 메소드

1. 해당 class 이름을 가진 요소를 HTMLCollection 오브젝트로 리턴한다.


getElementByTagName() 메소드

1. 해당 태그 이름을 가진 요소를 HTMLCollection 오브젝트로 리턴한다.