jQuery UI datepicker 중국어 설정
1603 단어 Datepicker
/* Chinese initialisation for the jQuery UI date picker plugin. */
jQuery(function($){
$.datepicker.regional['zh-CN'] = {
closeText: ' ',
prevText: '< ',
nextText: ' >',
currentText: ' ',
monthNames: [' ',' ',' ',' ',' ',' ',
' ',' ',' ',' ',' ',' '],
monthNamesShort: [' ',' ',' ',' ',' ',' ',
' ',' ',' ',' ',' ',' '],
dayNames: [' ',' ',' ',' ',' ',' ',' '],
dayNamesShort: [' ',' ',' ',' ',' ',' ',' '],
dayNamesMin: [' ',' ',' ',' ',' ',' ',' '],
weekHeader: ' ',
dateFormat: 'yy-mm-dd',
firstDay: 1,
isRTL: false,
showMonthAfterYear: true,
yearSuffix: ' '};
$.datepicker.setDefaults($.datepicker.regional['zh-CN']);
});