jquery의datepicker 로컬화 및 Today 문제 해결

6626 단어 Datepicker
1. 현지화
파일을 직접 불러올 수도 있고,script 뒤에 다음 문장을 추가할 수도 있습니다
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']);
        });
 
 
 
 
2、  Today (  )    input      ,                      
       , script       
 
 
        $.datepicker._gotoToday = function (id) {

            var target = $(id);

            var inst = this._getInst(target[0]);

            if (this._get(inst, 'gotoCurrent') && inst.currentDay) {

                inst.selectedDay = inst.currentDay;

                inst.drawMonth = inst.selectedMonth = inst.currentMonth;

                inst.drawYear = inst.selectedYear = inst.currentYear;

            }

            else {

                var date = new Date();

                inst.selectedDay = date.getDate();

                inst.drawMonth = inst.selectedMonth = date.getMonth();

                inst.drawYear = inst.selectedYear = date.getFullYear();

                this._setDateDatepicker(target, date);

                this._selectDate(id, this._getDateDatepicker(target));

            }

            this._notifyChange(inst);

            this._adjustDate(target);

        }

.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }
 
 
 
 

.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }

좋은 웹페이지 즐겨찾기