"JQuery UI 세그먼티드 버튼"의 두 판 사이의 차이

(새 문서: ;jQuery UI buttonset ;jQuery UI 라디오 버튼, 버튼셋 ==예시== <source lang='html5'> <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"...)
 
20번째 줄: 20번째 줄:
</source>
</source>
<jsfiddle>wzes8z2x</jsfiddle>
<jsfiddle>wzes8z2x</jsfiddle>
==같이 보기==
*[[세그먼티드 버튼]]


==참고 자료==
==참고 자료==

2015년 10월 19일 (월) 17:00 판

jQuery UI buttonset
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 }}