Disable time in bootstrap date time picker

前端 未结 20 1415
夕颜
夕颜 2021-01-30 07:56

I am using bootstrap date time picker in my web application, made in PHP/HTML5 and JavaScript. I am currently using one from here: http://tarruda.github.io/bootstrap-datetimepic

20条回答
  •  一生所求
    2021-01-30 08:36

    In my case, the option I used was:

    var from = $("input.datepicker").datetimepicker({
      format:'Y-m-d',
      timepicker:false # <- HERE
    });
    

    I'm using this plugin https://xdsoft.net/jqplugins/datetimepicker/

提交回复
热议问题