Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array 객체
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
Archives
- Today
- In Total
A Joyful AI Research Journey🌳😊
230130 name과 id의 차이, HTML5 radio를 쓸 때 name을 동일한 값으로 지정하면 중복 방지 가능 본문
💻Bootcamp Self-Study Revision✨/HTML5, CSS, Bootstrap, JSP
230130 name과 id의 차이, HTML5 radio를 쓸 때 name을 동일한 값으로 지정하면 중복 방지 가능
yjyuwisely 2023. 3. 29. 21:18230130
radio를 쓸 때 name을 동일한 값으로 지정하면 중복 방지 가능하다.
<!-- 개인정보 유효기간 radio 버튼: name을 같게 지정하면 중복이 방지된다.-->
<input type="radio" name="length">회원 탈퇴 시까지
<input type="radio" name="length">5년
<input type="radio" name="length">3년
<input type="radio" name="length">1년<br>
name is the name that is used when the value is passed (in the URL or in the posted data).
id is used to uniquely identify the element for CSS styling and JavaScript.
728x90
반응형
'💻Bootcamp Self-Study Revision✨ > HTML5, CSS, Bootstrap, JSP' 카테고리의 다른 글
230130 HTML5 <label for>과 <input id> 값을 일치시킬 경우 편리하게 이용할 수 있다. (0) | 2023.03.29 |
---|---|
230130 HTML5 화면 하단에 푸터 고정 (0) | 2023.03.29 |
🐥HTML, CSS, Javascript, jQuery: 첫 번째 개인 프로젝트 하면서 새로 알게 된 것 모음 조각 (2) [K-디지털 트레이닝 27일~] (0) | 2023.02.08 |
🐥HTML, CSS: 첫 번째 개인 프로젝트 하면서 새로 알게 된 것 모음 조각들 [K-디지털 트레이닝 21일~26일] (0) | 2023.02.03 |
Comments