我想在我的网络项目中的表单上插入一个datetimepicker或者只是一个使用bootstrap的timepicker。只有datepicker正在运行。 这是我的代码。
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script>
<script type="text/javascript">
$(function () {
$('#datepicker').datepicker();
});
</script>
<div class="form-group">
<label for="dateDebutGlacage">DateDebutGlacage</label>
<f:input class="form-control" path="dateDebutGlacage" id="datepicker" type="text" placeholder="DateDebutGlacage"></f:input>
答案 0 :(得分:0)
那是因为你使用的是jQueryUI的日期选择器,它只用于日期而不是时间。
你可以看一下为此构建的jQuery插件: