문서에서 id는 단 하나만 등장할 수 있는 식별자다. 아래 예제는 id의 값을 읽고 변경하는 방법을 보여준다.
<ul> <li>html</li> <li>css</li> <liid="active">JavaScript</li></ul><script>let active =document.getElementById('active');console.log(active.id);active.id ='deactive';console.log(active.id);</script>
Element.className
클래스는 여러개의 엘리먼트를 그룹핑할 때 사용한다.
<ul> <li>html</li> <li>css</li> <liid="active">JavaScript</li></ul><script>let active =document.getElementById('active');// class 값을 변경할 때는 프로퍼티의 이름으로 className을 사용한다.active.className ="important current";console.log(active.className);// 클래스를 추가할 때는 아래와 같이 문자열의 더한다.active.className +=" readed"</script>