如何在选择日期时关闭 bootstrap datetimepicker
How to close bootstrap datetimepicker when date is selected
我正在使用 bootstrap 日期时间选择器 (http://eonasdan.github.io/bootstrap-datetimepicker/Installing/)。
当我 select 选择器不隐藏日期时,我必须单击外部才能将其关闭。
如何在日期为 selected/clicked 时关闭 datetimepicker?
<div class="col-sm-3">
<asp:TextBox ID="date2" class="form-control" runat="server"
onfocus="this.style.backgroundColor='yellow'"
onblur="this.style.backgroundColor='cyan'"/>
<script type="text/javascript">
$(function () {
$('#date2').datetimepicker();
});
</script>
</div>
您可以使用以下代码强制日期时间选择器隐藏自身。
$('#date2').data("DateTimePicker").hide();
对于 hide
等其他功能,请考虑查看 documentation。
我正在使用 bootstrap 日期时间选择器 (http://eonasdan.github.io/bootstrap-datetimepicker/Installing/)。
当我 select 选择器不隐藏日期时,我必须单击外部才能将其关闭。 如何在日期为 selected/clicked 时关闭 datetimepicker?
<div class="col-sm-3">
<asp:TextBox ID="date2" class="form-control" runat="server"
onfocus="this.style.backgroundColor='yellow'"
onblur="this.style.backgroundColor='cyan'"/>
<script type="text/javascript">
$(function () {
$('#date2').datetimepicker();
});
</script>
</div>
您可以使用以下代码强制日期时间选择器隐藏自身。
$('#date2').data("DateTimePicker").hide();
对于 hide
等其他功能,请考虑查看 documentation。