实际上,在我的 Spring 应用程序中form
,我在我的 jsp 代码中使用了基于 spring 的标签。
并为此添加功能<form:input>
,使用 Jquery 提供 DatePicker。
这是我的Jsp代码..
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<link rel="stylesheet" href="resources/css/jquery-ui.css" type="text/css">
<link rel="stylesheet" href="resources/css/custom.css" type="text/css">
<script type="text/javascript" src="resources/jquery/jquery-ui.min.js"></script>
<form:form action="form/form1"
modelAttribute="form1">
<label class="control_label_c">From : </label>
<div class="controls_c">
<form:input type="text" path="fromDate" class="date-picker" />
</div>
</form:form>
<script>
$(function() {
$('.date-picker').datepicker( {
changeMonth: true,
changeYear: true,
showButtonPanel: true,
dateFormat: 'MM yy',
onClose: function(dateText, inst) {
var month = $("#ui-datepicker-div .ui-datepicker-month :selected").val();
var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
$(this).datepicker('setDate', new Date(year, month, 1));
}
});
});
</script>
但是日期选择器不起作用(不可见)......
这个基于 spring 的表单标签有什么问题吗?或者
我的代码有什么问题吗?