在下面的代码中,StartTime
为05/29/2017 1:00:00 PM
。
但我希望StartTime
为1:00:00 PM
。
HTML
<div class="form-group">
<label>From</label>
<input class="form-control " id="StartTime" type="text" name="StartTime"/>
</div>
JS
$('#StartTime').datetimepicker({
format: 'LT'
});
答案 0 :(得分:0)
这是你如何禁用日期
$(function () {
$('#StartTime').datetimepicker({
format: 'LT',
});
});
答案 1 :(得分:0)
试试这个:
$("#StartTime").datetimepicker({
format: 'hh:ii',
startView: 1,
pickDate: false,
autoclose: true
}).on("show", function(){
$(".table-condensed .prev").css('visibility', 'hidden');
$(".table-condensed .switch").text("Pick Time");
$(".table-condensed .next").css('visibility', 'hidden');
});