일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- .env
- npm 에러
- CLI
- 개발일기
- .current
- CORS
- 실행컨텍스트 면접
- 객체
- 로컬상태
- 그래머인유즈
- 영어공부
- useRef역할
- 노마드코더
- 실행컨텍스트스택
- 개발공부
- Mini Node Server
- 영어
- Block
- state hook
- 실행컨텍스트콜스택
- html
- styled-component
- css
- 실행컨텍스트 동작과정
- 고차함수
- 전역상태
- 실행컨텍스트자바스크립트
- 알고리즘
- 실행컨텍스트 실행과정
- 실행컨텍스트란
- Today
- Total
목록개발공부 (2)
오늘도 삽질중
로그인 화면을 만드는 여정을 떠나보자! html 1 2 3 4 5 6 7 8 log In Colored by Color Scripter cs js 1 2 3 4 5 6 7 8 9 10 11 const loginForm = document.querySelector("#login-form"); const loginInput = document.querySelector("#login-form input"); const loginButton = document.querySelector("#login-form button"); function onLoginBtnClick(){ console.log(loginInput.value); } loginForm.addEventListener("submit",onLoginB..
요즘 js에서 html을 읽는걸 배우고있다. js가 html과 연결되어있고 상호작용을한다는 사실을 기억하고! 오늘 내가 할 거는 js를 통해 html을 위와같이 변화시키려는 것이다. 내가 하고싶은것: 한 번 클릭하면 blue 또 한 번 클릭하면 tomato 또 한 번 클릭하면 blue 또 한 번 클릭하면 tomato 무한반복 =>이 말을 듣고 내가 생각한것 js에서 html element 호출해오고, event반응 필요하고 , function 의 if으로 참, 거짓 판별 html js 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 const h1=documnet.querySelector(".hello h1"); ---> 1.element function handleTitleC..