Notice
Recent Posts
Recent Comments
«   2024/12   »
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
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:18

230130

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
반응형
Comments