Is it possible to change date format in date time picker?

后端 未结 7 714
刺人心
刺人心 2021-01-13 03:12

I found a great date time picker based on jQuery-ui http://trentrichardson.com/examples/timepicker/, but suddenly realized that i can\'t modify date format... Tried somethin

7条回答
  •  南笙
    南笙 (楼主)
    2021-01-13 03:38

    Yes it is possible, have a look at the dateFormat option in the API Documentation for the datepicker

    This will work,

    jQuery('.datetimepicker').datetimepicker({
            timeFormat: 'HH:mm',
            dateFormat: "yy-mm-dd"
    });
    

提交回复
热议问题