Disable time in bootstrap date time picker

前端 未结 20 1695
夕颜
夕颜 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:39

    This allows to show time in input field but hides time picker button, which is second li element in accordion

    .bootstrap-datetimepicker-widget .list-unstyled li:nth-child(2){
        display: none;
    }
    

提交回复
热议问题