jquery - 如何隐藏引导日期时间选择器中的标题导航?-LMLPHP

如何隐藏datetimepicker下图中的标题导航。任何人都建议或指导如何解决此问题。

我的密码
的HTML

<div class="input-append">
    <input type="text" name="start_time" placeholder="00:00 AM/PM" class="input-mini statusTime" value="{$response.start_time}" style="width: 100px;"  />
    <span class="add-on glyphicons clock"><i></i></span>
</div>


脚本

  $('.statusTime').datetimepicker({
        format: "HH:ii P",
        showMeridian: true,
        autoclose: true,
        todayBtn: false,
        pickDate: false,
        startView: 1
    });

最佳答案

尝试将其添加到CSS中,不显示的元素不显示

.table-condensed thead .picker-switch, .table-condensed thead  .prev, .table-condensed thead .next
{
     display: none;
}

07-24 17:04