JQuery UI 세그먼티드 버튼

jQuery UI radio buttonset
jQuery UI 라디오 버튼셋, 버튼세트
jQuery UI 세그먼티드 버튼

1 예시[ | ]

<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script>
$(function() {
    $( "#radio" ).buttonset();
});
</script>

<div id="radio">
    <input type="radio" id="radio1" name="radio"><label for="radio1">선택지 1</label>
    <input type="radio" id="radio2" name="radio" checked><label for="radio2">선택지 2</label>
    <input type="radio" id="radio3" name="radio"><label for="radio3">선택지 3</label>
</div>

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}