일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 맥북백틱입력
- 프론트엔드배포
- Next.js
- 버전생성프로세스
- 백틱
- 디지털교육
- 스나이퍼팩토리
- 미래내일일경험
- 취준생
- 프론트엔드개발자양성과정
- 유데미
- 맥북백틱
- 디지털하나로입학식
- DIGITALHANARO
- 하나은행
- 부트캠프
- `
- s3
- 디지털하나로
- 깃허브 레포지토리와 로컬 코드 연결하기
- 프로젝트캠프
- 디지털취업
- 배포
- 웅진씽크빅
- udemy
- 네이버로그인창만들기
- 개발자교육과정
- github
- kdt
- Today
- Total
목록🌐 Web/🟡 JavaScript (13)
Land of Joe
Step1. 현재 위치의 위도, 경도 숫자 얻기 function onGeoOk(position){ const lat = position.coords.latitude; const lng = position.coords.longitude; console.log("You live in ", lat, lng); } function onGeoError(){ alert("Can't find you. No weather for you."); } navigator.geolocation.getCurrentPosition(onGeoOk,onGeoError); Step2. 위도, 경도 숫자를 장소로 바꿔준다 https://openweathermap.org/current Current weather data - OpenWea..
Step0 ) 기본 설정 // javascript const todoForm = document.querySelector('#todo-form'); const todoList = document.querySelector('#todo-list'); Step1 ) input 태그인 todoForm이 'submit'되었을 때 작동할 'handleTodoSubmit'이라는 함수를 만든다 function handleToDoSubmit(event){ event.preventDefault();//새로고침되지 않게 하기 위해 const newTodo = todoInput.value; todoInput.value=""; //작성 후 엔터 누르면 UI상 input 안이 비어지도록 paintTodo(newTodo); } S..
// html {quote, author}이 '10개' 있는 const quotes 생성 // javascript const quotes = [ { quote: "Go ahead, make my day.", author: "Harry Callahan" }, { quote: "If you want something done right, do it yourself.", author: "Charles-Guillaume Étienne" }, { quote: "May the Force be with you.", author: "Star Wars" }, { quote: "Life is like a box of chocolates. You never know what you’re gonna get.", author:..
00:00:00 // javascript const clock = document.querySelector('h2#clock'); setInterval, setTimeout 활용해서 시계 만들기를 해보자 [JavaScript] setInterval, setTimeout 공부(2) 22.10.05에 썼던 글 https://joeindeu22.tistory.com/entry/setTimeout [JavaScript] setTimeout, setInterval 타이머 설정하기 setTimeout() : 일정 시간이 지나면 코드를 실행해주는 자바스크립트의 기본 함수 setInterval() : 일 joeindeu22.tistory.com 그전에 js에 있는 date 객체를 활용해 현재 시각을 가져올 수 있다 c..
22.10.05에 썼던 글 https://joeindeu22.tistory.com/entry/setTimeout [JavaScript] setTimeout, setInterval 타이머 설정하기 setTimeout() : 일정 시간이 지나면 코드를 실행해주는 자바스크립트의 기본 함수 setInterval() : 일정 시간마다 코드를 실행해주는 자바스크립트의 기본 함수 setTimeout(function(){실행코드}, 시간); setInter joeindeu22.tistory.com [ '일정 시간 간격마다' function 호출하기 ] setInterval( , ) 첫번째 인자: 실행하고자 하는 function 두번째 인자: 호출되는 function을 몇 ms(1s=1000ms) 간격으로 할지 func..
브라우저에 데이터를 저장할 수 있게 하는 기능 https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage Window: localStorage property - Web APIs | MDN The localStorage read-only property of the window interface allows you to access a Storage object for the Document's origin; the stored data is saved across browser sessions. developer.mozilla.org localStorage.setItem(key, value); localStorage.setItem("myC..
- document.getElementById() - document.getElementsByClassName()[] ** 인덱싱 필수: 찾은 것 중 위에서 몇 번째 것인지(0부터 시작) - document.querySelector() * Id는 '#__' (샵) * Class는 '.__' (온점) - document.querySelectorAll()[] ** 인덱싱 필수
함수명 작명은 구체적으로. 영문작명시 camelCase 방법을 따르는 것이 관습임. - 소문자로 시작 - 여러 단어를 합친 이름일 경우 띄어쓰기X 언더바(_)X - 단어의 첫 알파벳만 대문자 사용 - (ex) openModal, closeModal function openModal(){ document.getElementById('alert').style.display='block'; } function closeModal(){ document.getElementById('alert').style.display='none'; } parameter 파라미터 문법 function modal(구멍){ document.getElementById('alert').style.display=구멍; } modal('b..