gpt4 book ai didi

jquery - Spring,Jquery 中基于表单标签的日期选择器?

转载 作者:行者123 更新时间:2023-12-01 01:35:13 28 4
gpt4 key购买 nike

实际上,在我的 Spring 应用程序中,我使用的是基于 spring 的 form我的 jsp 代码中的标记。

并添加此 <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的表单标签有什么问题吗?或

我的代码有什么问题吗?

最佳答案

这主要是因为引用问题。请检查以下内容,最好使用Firebug或浏览器中的开发者工具

  1. 正确引用了兼容 jQuery 版本的 jQuery UI
  2. jQuery UI CSS 被正确引用
  3. 引用了jQuery UI js

CDN

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>

关于jquery - Spring,Jquery 中基于表单标签的日期选择器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15826223/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com