Set default time in bootstrap datetimepicker?

前端 未结 3 581
伪装坚强ぢ
伪装坚强ぢ 2021-01-20 06:12

How can I set the default Hours and minutes as \"00:00\". Here I want to set only time not date. I am using the following code for datetimepicker. In this code how can I set

3条回答
  •  -上瘾入骨i
    2021-01-20 06:38

    $('#datepicker').datetimepicker({
        format: "H:i",
        defaultTime: '00:00',
        pickSeconds: false,
        datepicker: false
    });
    

    http://jsfiddle.net/7q26juzu/

提交回复
热议问题