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 |
Tags
- fastify
- github Actions
- 터치 스와이프
- react
- docker-compose
- browserslist
- Docker
- 우테코
- swiper
- typescript
- CSS
- custom element
- Shadow DOM
- RTL8852BE
- javascript
- 무선랜카드 교체
- AX210
- web component
- scroll-snap
- Prometheus
- 우아한테크코스
- live share
- GitHub Pages
- react-dom
- 우아한테크코스 레벨3
- Grafana
- 유한 상태 머신
- webpack
- HTML
- 데모데이
Archives
- Today
- Total
목록form control (1)
IT일상
[Web Component] 커스텀 폼 컨트롤, form associated 컴포넌트 만들기
리뉴얼 된 블로그로 보기: https://solo5star.dev/posts/29/ 🏆 로또를 구매하세요~ 구매하기 로또를 구매하는 폼을 만들고자 합니다. 엘리먼트는 1) 1~45의 숫자 6개를 받아야 하며 2) 서로 중복되지 않는 번호인지 검증해야 합니다. customElements.define('my-lotto-input', class MyLottoInput extends HTMLElement { constructor() { super(); this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` `; } }); 커스텀 폼 컨트롤은 위와 같이 만들 수 있습니다. 하지만 이렇게 만들더라도 form은 이 input이 올바른지, 어떠한 값을 가..
프론트엔드
2023. 3. 7. 00:05