<div> ID <inputtype="text"placeholder="아이디"> </div> <div> PASSWORD <inputtype="password"placeholder="비밀번호"> </div> <div> <inputtype="checkbox"> 항상 ID기억하기 </div>
4. 라디오버튼과 체크박스버튼의 차이점은?
라디오버튼은 그룹설정가능, 중복선택불가능 체크박스버튼은 그룹설정불가능, 중복선택가능
1 2 3 4 5 6
<div> <inputtype="radio"name="choice1"value="a"> 출근이 힘들까? <inputtype="radio"name="choice1"value="b"> 퇴근이 힘들까? </div> 만약 name이 없다면 중복선택이 가능하다.근데 한 번클릭하면 해제가 안됨. name의 값은 똑같은 이름이 되어야 같은 그룹으로 지정이 되어 둘중하나 선택이 가능해진다
1 2 3 4
<div> <inputtype="checkbox"checked> 월급은 내가 받을게 <inputtype="checkbox"> 출근은 누가 할래 </div>