jQuery - 체크된 라디오 버튼 선택

 

<input type="radio" name="selectTemplate" value="0">
<input type="radio" name="selectTemplate" value="1">
<input type="radio" name="selectTemplate" value="2">

이렇게 그룹된 라디오 버튼이 있을 때

선택된 것이 있는지 체크하려면 아래 선택자를 활용하자.

$('input[name=selectTemplate]:checked')

 

Subscribe
Notify of
guest

이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.

0 댓글
Inline Feedbacks
View all comments
TOP