js 순환 변경 div 색상 구체 적 방법
for (var i; i < array.length; i++) {
statement;
}
for (var i in array) {
statement;
}
이 두 가지 용법 은 같은 일 을 할 수 있 을 것 같 지만 실제로 두 순환 의 순환 횟수 는 일반적으로 다르다.원본 코드 는 다음 과 같다.
<!DOCTYPE html>
<html>
<head>
<style>
#button{text-align:center;}
#outer{width:330px; height:100px; margin:10px auto;}
#outer div{float:left;width:100px;height:100px;margin:0px 5px;background:black;}
</style>
<script>
window.onload = function() {
var obutton = document.getElementsByTagName("button")[0];
var outer = document.getElementById("outer");
var outerDiv = outer.getElementsByTagName("div");
obutton.onclick = function() {
for(var p in outerDiv) outerDiv[p].style.background = "red";
};
};
</script>
</head>
<body>
<div id="button">
<button> </button>
</div>
<div id="outer">
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>
이 코드 는 for-in 문 구 를 사용 하여 순환 하 였 는데 문제 가 없어 보 입 니 다.그러나 브 라 우 저 디 버 깅 을 할 때 오류 가 발생 합 니 다."Uncaught TypeError:Cannot set property'background'of undefined"왜 그 럴 까요?만약 우리 가 stament 의 내용 을 좀 고치 면 문 제 를 발견 할 수 있 을 것 이다. for(var p in outerDiv) alert(p);결과 출력 은 0,12 length item 이 므 로 property 가 length 와 item 을 가 져 왔 을 때 style 방법 을 사용 하려 고 시도 하면 당연히 undefined 입 니 다.수정 은 다음 과 같다.
<!DOCTYPE html>
<html>
<head>
<style>
#button{text-align:center;}
#outer{width:330px; height:100px; margin:10px auto;}
#outer div{float:left;width:100px;height:100px;margin:0px 5px;background:black;}
</style>
<script>
window.onload = function() {
var obutton = document.getElementsByTagName("button")[0];
var outer = document.getElementById("outer");
var outerDiv = outer.getElementsByTagName("div");
obutton.onclick = function() {
for (var i = 0; i < outerDiv.length; i++){
outerDiv[i].style.background = "red";
}
};
};
</script>
</head>
<body>
<div id="button">
<button> </button>
</div>
<div id="outer">
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[2022.04.19] 자바스크립트 this - 생성자 함수와 이벤트리스너에서의 this18일에 this에 대해 공부하면서 적었던 일반적인 함수나 객체에서의 this가 아닌 오늘은 이벤트리스너와 생성자 함수 안에서의 this를 살펴보기로 했다. new 키워드를 붙여 함수를 생성자로 사용할 때 this는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.