[2일차] 자습
1619 단어 JavaScript자습JavaScript
문제
index.html에 있는 모든 a태그의 글자 색깔을 배경색과 반전되게 하려한다.
- 검은 배경 ▶ 하얀색 글자
- 흰 배경 ▶ 검은색 글자
<input type="button" value="night" onclick="
let aTagSearch = document.querySelectorAll('a');
// console.log(aTagSearch);
if (this.value == 'night'){
document.querySelector('body').style.backgroundColor='black';
document.querySelector('body').style.color='white';
this.value = 'day';
for(let i=0; i<aTagSearch.length; i++){
aTagSearch[i].style.color = 'white';
}
} else {
document.querySelector('body').style.backgroundColor='white';
document.querySelector('body').style.color='black';
this.value = 'night';
for(let i=0; i<aTagSearch.length; i++){
aTagSearch[i].style.color = 'black';
}
}">
결과화면
Author And Source
이 문제에 관하여([2일차] 자습), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@lnglog/2일차-자습저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)