Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 가상환경
- Selenium
- Matplotlib
- 코딩테스트
- 노마드코딩
- 선그래프
- openCV
- Algorithm
- type hint
- 파이썬
- MySQL
- 알고리즘 스터디
- dataframe
- programmers
- 알고리즘스터디
- aws jupyter notebook
- pandas
- String Method
- NumPy
- queue
- 데이터시각화
- 정보처리기사 c언어
- 백준
- 프로그래머스
- 자료구조
- 알고리즘
- Join
- Stack
- javascript
- python
Archives
- Today
- Total
목록nomads coders (1)
조금씩 꾸준히 완성을 향해
[Nomad Coders -JS로 크롬앱 만들기] Set Todo-List
앱에 Todo-list를 추가해 보자. 먼저 이렇게 입력할 수 있는 input 태그를 생성해 준다. const toDoForm = document.getElementById("todo-form"); function handleToDoSubmit(event){ event.preventDefault(); } toDoForm.addEventListener("submit", handleToDoSubmit); submit이 되면 값을 저장하기 위해 handleToDoSubmit 함수를 호출한다. 함수 안에서는 가장 먼저, submit의 default 행위(새로고침)을 막아주기 위해 preventDefalut() 메소드를 불러준다. 그리고 나서는 이렇게 입력하고 enter를 눌렀을 때 값은 저장이 되고, input..
기타 언어/JavaScript
2022. 8. 11. 23:47