일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- putextra
- DOMContentLoaded
- javascript
- 230508
- intent
- 인텐트
- DFS
- string
- null-safety
- Class
- html
- 부가데이터
- ViewPager
- 안드로이드
- textContent
- parcelable
- 230503
- querySelector
- 데이터 타입
- 함수 인자
- C++
- 230510
- Flutter
- fragment
- 생명주기
- serializable
- 프래그먼트
- ActionBar
- classList
- Adapter
- 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){ ..