HTMLElement
단수와 복수
HTMLElement : 실행결과가 하나인 경우 HTMLCollection : 실행결과가 복수인 경우
<ul>
<li>HTML</li>
<li>CSS</li>
<li id="active">JavaScript</li>
</ul>
<script>
var li = document.getElementById('active');
console.log(li.constructor.name); // HTMLElement
var lis = document.getElementsByTagName('li');
console.log(lis.constructor.name); // HTMLCollection
</script>
<a id="anchor" href="http://opentutorials.org">opentutorials</a>
<ul>
<li>HTML</li>
<li>CSS</li>
<li id="list">JavaScript</li>
</ul>
<input type="button" id="button" value="button" />
<script>
var target = document.getElementById('list');
console.log(target.constructor.name); // HTMLLIElement
var target = document.getElementById('anchor');
console.log(target.constructor.name); // HTMLAnchorElement
var target = document.getElementById('button');
console.log(target.constructor.name); // HTMLInputElement
</script>
엘리먼트 객체에 따라서 프로퍼티가 다르다. 하지만 모든 엘리먼트들은 HTMLElement를 상속 받고 있다.
DOM Tree
Last updated
Was this helpful?