简体   繁体   中英

html5 datepicker jquery min max and format

I wrote a simple function to set min/max dates for datepicker and format selected date. But when I set the range the format returns to default mm/dd/yy Please note that the page in HTML5. and here the code

$(function () {
    var pickerFormat = {
        dateFormat: "dd/mm/yy"
    };
    var range = {
        minDate: "-2y",
        maxDate: new Date()
    };

    $("#datepicker1").datepicker(range, pickerFormat);
});

Use the same object for both date format and picker range.

for example

$(function () {
     var pickerFormatrange = {
          dateFormat:"dd/mm/yy",
          minDate: "-2y",
          maxDate: new Date()
     }; 
     $("#datepicker1").datepicker(pickerFormatrange);
 });

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM