"JQuery UI 시간선택기 timepicker"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
26번째 줄: 26번째 줄:
*[[jQuery UI 날짜선택기 datepicker]]
*[[jQuery UI 날짜선택기 datepicker]]


==참고 자료==
==참고==
*https://github.com/fgelinas/timepicker
*https://github.com/fgelinas/timepicker
[[분류: jQuery UI]]
[[분류: jQuery UI]]

2017년 6월 27일 (화) 04:55 판

1 개요

jQuery UI 시간선택기 timepicker
jQuery UI 플러그인 타임피커
  • jQuery UI datepicker는 jQuery UI에 포함되어 있지만, timepicker는 없음
  • 플러그인을 이용해야 함
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>

<link rel="stylesheet" href="//cdn.rawgit.com/fgelinas/timepicker/master/jquery.ui.timepicker.css">
<script src='//cdn.rawgit.com/fgelinas/timepicker/master/jquery.ui.timepicker.js'></script>
<script>
$(function() {
    $('.timepicker').timepicker();
});
</script>
    
<input type="text" class='timepicker'>

2 같이 보기

3 참고

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