본문 바로가기

개발관련/front-end

input type="radio" 사용시 하나만 선택하게 하기

728x90

<input type="radio"/><label>사용함</label>
<input type="radio" checked="checked"/><label>미사용</label>

 

하나만 선택하게 하고싶은데 그렇게 안된다?

 

네 안됩니다...

 

<input type="radio"  name="r"/><label>사용함</label>
<input type="radio" checked="checked" name="r"/><label>미사용</label>

 

name 을 같게 지정해줍시다! 그럼 해결!

'개발관련 > front-end' 카테고리의 다른 글

css 색상  (0) 2021.05.30
css table 테이블 참고 사이트  (0) 2021.05.30
어떨 때 table 태그를 사용하고 div태그를 사용해야 할까?  (0) 2021.05.24
첫 페이지 구현 1  (0) 2021.05.12
레이아웃 잡기  (0) 2021.05.11