728x90
<html>
<div id="div1"></div>
<div id="div2"></div>
<div id="div3"></div>
<div id="div4"></div>
<div id="div5"></div>
</html>
<script>
var element = document.queryselectorAll('div');
var arrayIdValue;
for(var i; i<element.length; i++){
element [i-1].getElementById=arrayIdValue.push;
}
document.write(arrayIdValue);
</script>
간단한 예시이며 for반복문과 함께 사용되어야 모든 element의 타겟지정이 가능하다는 것을 알 수 있었다.
728x90
'javascript' 카테고리의 다른 글
객체의 표기법 (0) | 2020.09.22 |
---|---|
데이터 표현 방법 (0) | 2020.09.22 |
함수의 종류 (0) | 2020.09.13 |
Looping code(loop : 고리를 만들다) (0) | 2020.09.12 |
삼항 연산자 (0) | 2020.09.11 |