如何隐藏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;
}