Set default time in bootstrap datetimepicker?

前端 未结 3 580
伪装坚强ぢ
伪装坚强ぢ 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条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-20 06:28

    Bootstrap datetimepicker uses moment library so make use of it like this,

    var dateNow = new Date();
    $('#current_date').datetimepicker({
        defaultDate:moment(dateNow).hours(0).minutes(0).seconds(0).milliseconds(0)
    });
    

提交回复
热议问题