일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- springbatch chunk
- react react-router-dom v6
- react
- react Page
- Javascript
- Docker Windows 설치
- Spring Entity
- spring security
- springbatch
- Spring Controller return
- SpringBatch 스키마
- react quill custom
- 코드 중복제거
- Spring CORS
- Spring JPA
- react link
- Spring DTO
- 텍스트가 많은 경우
- react jsx if
- editor Quill
- react Quill
- spring builder
- react forwardRef
- step 테이블
- javascript 기초
- javascript 함수
- spring
- JPA Update\
- javascrpit 기초
- JPA Insert
- Today
- Total
목록JavaScript/예제 (3)
천천히 알아보는 코딩공부
todo.js const toDoForm = document.getElementById("todo-form"); const toDoInput = toDoForm.querySelector("input"); const toDoList = document.getElementById("todo-list"); let toDos = []; const TODOS_KEY = "todos" function saveToDos(){ localStorage.setItem("todos", JSON.stringify(toDos)); } function deleteToDo(event){ const li = event.target.parentElement; todos = todos.filter(toDo => toDo.id !== p..

HTML 리스트 만들기 HTML 리스트 태그 : https://daeseok94.tistory.com/12 html 목록 태그 (ul, ol, li) ul, ol, li 목록을 만들 수 있음 : ordered list의 약자로, 숫자나 알파벳 등 순서가 있는 목록을 만드는 데 사용합니다 : unordered list의 약자로, 순서가 필요 없는 목록을 만듭니다 : definition list.. daeseok94.tistory.com todo.js const toDoForm = document.getElementById("todo-form"); const toDoInput = toDoForm.querySelector("input"); const toDoList = document.getElementByI..
javascript 랜덤으로 배열에있는 문자열 출력 const quotes = [ { quote : "a", author : "daeseok1", }, { quote : "b", author : "daeseok2", } ] const quote = document.querySelector("#quote span:first-child"); const author = document.querySelector("#quote span:last-child"); const todaysQuote = quotes[Math.floor(Math.random() * quotes.length)] quote.innerText = todaysQuote.quote; //quote 위치에 랜덤 quote 출력 author.inner..