일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 프로그래밍 언어론
- 프로그래머스 자바
- codesandbox
- vanillaJS
- 데이터모델링과마이닝
- 코딩테스트 고득점 Kit
- 리액트 훅
- 디자인 패턴
- 프로그래머스 완전탐색
- 자바
- 백준
- useState
- NextJS
- 장고
- 코딩테스트 고득점 Kit 완전탐색
- react
- react hook
- JavaScript
- React JS
- 코틀린
- Java
- react firebase
- 리액트
- 프로그래머스
- 컴퓨터 네트워크
- 자바스크립트
- useEffect
- 자바 공부
- websocket
- design pattern
- Today
- Total
목록querySelector (2)
기록하는 개발자
div.fruit h1[id=first] : class=fruit인 div중 h1의 id가 first인 쿼리 const h1=document.querySelector("div.fruit h1[id=first]"); handleTitleClick1, 2는 아래와 같은 역할을 동일하게 수행하는 코드이다. h1의 classList에 clicked class가 이미 있는지 확인 → 만약 있다면 clicked를 제거 → 없다면 clicked를 추가 toggle 함수는 handleTitleClick2 함수 내부의 코드 4줄과 동일한 역할을 한다. function handleTitleClick1(){ const clickedClass = "active"; if(h1.classList.contains(clickedCl..
Peach🍑 GreenApple🍏 WaterMelon🍉 ☁ 🌞 ☃ ☔ body{ background-color: lightblue; text-align: center; } // document : 현재 js 파일과 연결된 html 파일 // document에 first 라는 id를 가진 element를 가져온다. let firstElement=document.getElementById("first"); console.log(firstElement); // document에 second 라는 id를 가진 element의 innerText를 가져온다. let SecondElement=document.getElementById("second").innerText; console.log(SecondElemen..