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 | 31 |
Tags
- 프래그먼트
- javascript
- 인텐트
- textContent
- null-safety
- classList
- parcelable
- 생명주기
- 데이터 타입
- 부가데이터
- string
- html
- 안드로이드
- C++
- ActionBar
- DOMContentLoaded
- Flutter
- 230503
- putextra
- querySelector
- DFS
- serializable
- fragment
- intent
- ViewPager
- 230508
- Class
- 함수 인자
- 230510
- Adapter
Archives
- Today
- Total
목록querySelectorAll (1)
나만의 개발노트
[JS프로젝트] 2. 버튼으로 숫자 카운트
[나의 코드] - index.html counter 0 DECREASE RESET INCREASE - app.js const decBtn = document.getElementById('dec_btn'); const resBtn = document.getElementById('res_btn'); const incBtn = document.getElementById('inc_btn'); const value = document.getElementById('value'); let count = 0; decBtn.addEventListener('click',function(){ count--; if(count>0){ value.style.color = 'green'; }else if(count === 0){ ..
[실습]/[실습] 프론트엔드
2023. 5. 3. 22:39