3

实际上,在我的 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 的表单标签有什么问题吗?或者

我的代码有什么问题吗?

4

3 回答 3

1

这主要是因为参考问题。请检查以下内容,最好在浏览器中使用 Firebug 或开发人员工具

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

内容分发网络

<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>
于 2013-04-05T05:07:17.160 回答
0

看起来你没有加载 jquery.js ......你需要 jquery 文件来运行 ui 组件..

在 jquery-ui.min.js 之前加载 jquery.js

 <script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
 <script type="text/javascript" src="resources/jquery/jquery-ui.min.js"></script>
于 2013-04-05T05:06:00.043 回答
0

尝试使用以下代码

<form:input path="fromDate" cssClass="date-picker" />

你的代码是可以接受的,

<form:input type="text" path="fromDate" class="date-picker" />

因为所有的 Spring MVC 表单标签都支持动态属性,比如 HTML5 placeholder。除非您使用的是旧版本的 Spring。

于 2013-04-05T08:19:40.937 回答