일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 인텐트
- DOMContentLoaded
- string
- ViewPager
- 생명주기
- html
- 부가데이터
- DFS
- putextra
- javascript
- serializable
- classList
- fragment
- ActionBar
- 230510
- 데이터 타입
- null-safety
- C++
- textContent
- 안드로이드
- intent
- 230503
- Class
- 230508
- querySelector
- Adapter
- parcelable
- 함수 인자
- Flutter
- 프래그먼트
- Today
- Total
목록textContent (2)
나만의 개발노트
[나의 코드] - app.js // local reviews data const reviews = [ { id: 1, name: 'susan smith', job: 'web developer', img: 'https://images2.imgbox.com/e0/57/qI5bbwvg_o.jpeg', text: "I'm baby meggings twee health goth +1. Bicycle rights tumeric chartreuse before they sold out chambray pop-up. Shaman humblebrag pickled coloring book salvia hoodie, cold-pressed four dollar toast everyday carry", }, { id: 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){ ..