"javascript/jquery/datepicker"의 두 판 사이의 차이
Redjini WiKi
< javascript | jquery
(차이 없음)
|
2017년 7월 3일 (월) 13:50 기준 최신판
$(function() {
$( "#datepicker" ).datepicker({
dayNames : ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"],
dayNamesMin : ["일", "월", "화", "수", "목", "금", "토"],
showMonthAfterYear: true,
nextText: "다음",
prevText: "이전",
dateFormat: "yy-mm-dd"
});
});
//기본 날짜 지적하기
$('#datepicker').datepicker('setDate', '-7d' ); //today -7
$('#datepicker').datepicker('setDate', 'today' ); //today