프로그래밍/jQuery

jquery datepicker monthpicker 월선택

p-a-r-k 2017. 6. 13. 14:25
반응형

'월 선택'시 사용


1. jquery include/ ui포함


2. monthpicker.zip


3.



$(function(){
	/* MonthPicker 옵션 */
	options = {
		pattern: 'yyyy-mm', // Default is 'mm/yyyy' and separator char is not mandatory
		selectedYear: 2017,
		startYear: 2008,
		finalYear: 2020,
		monthNames: ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월']
	};

	/* MonthPicker Set */
	$('#monthpicker').monthpicker(options);

	/* 버튼 클릭시 MonthPicker Show */
	$('#btn_monthpicker').bind('click', function () {
		$('#monthpicker').monthpicker('show');
	});
});


반응형