我无法在springmvc项目中获得datetimepicker

时间:2016-08-04 16:03:08

标签: javascript jquery twitter-bootstrap spring-mvc

我想在我的网络项目中的表单上插入一个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>

1 个答案:

答案 0 :(得分:0)

那是因为你使用的是jQueryUI的日期选择器,它只用于日期而不是时间。

你可以看一下为此构建的jQuery插件:

http://xdsoft.net/jqplugins/datetimepicker/