DOM 21.03.27


DOM : Atrribute 추가 방법
  • setAttribute()

syntax

요소.setAttribute(추가할 이름, 추가할 );

ex code

const input = document.queryselector('input');

input.setAttribute('type', 'checkbox');

아래와 같은 방법으로 추가 가능

input.type = 'checkbox';
  • append() : 다양한 요소를 한번에 추가 가능하다.
const li = document.queryselector('li');

li.apeend(input, span, ul)
  • Cannot read property ‘length’ of undefined 오류 : length가 들어가는 반복문을 부분에 오류가 있을 확률이 높다. 반복문의 length가 가리키는 값이 undefinded





© 2020.11. by creamer

Powered by CREAMer