0

我在我的 Web 应用程序中使用 spring-mvc 和 bootstrap。在页面中,我有 2 个字段供用户输入开始日期时间和结束日期时间,这是我从 bootstrap-datetimepicker.js https://github.com/smalot/bootstrap-datetimepicker

这工作正常,但现在我需要包含验证,startdate-time 总是大于 enddate-time,我也使用 jquery.validate.min.js 进行表单验证,但我无法比较 2 个时间戳,我尝试了下面的代码

$.validator.addMethod("budgetgreaterThan", 
          function(value, element, params) {
      alert(value);
      value=value.slice(0,-6);


        if (!/Invalid|NaN/.test(new Date(value))) {
            return new Date(value) >= new Date($(params).val());
        }
        return isNaN(value) && isNaN($(params).val()) 
            || (Number(value) > Number($(params).val())); 
    },'Must be greater than {0}.');

rules:
{
  budgetgreaterThan: '#startdate' 
}

messages:
{
    budgetgreaterThan:"Delivery date and Collect date should be proper"
}

这里的时间戳值是这种格式"YYYY-MM-DD hhhh:mm:ss"

谁能告诉我如何实现这一目标?

4

1 回答 1

0

我通过在后端进行 ajax 调用和验证解决了这个问题,我避免了$.validator.addMethod(),而是使用了onblur="myFunction()"

<input type="text" id="enddate" name="enddate" onblur="myFunction()">

<script>
function myFunction()
{

  var sdate = $('#startdate').val();
  var edate = $('#enddate').val();

  var totaldate = sdate+"/"+edate;

   $.ajax({
     url: '${pageContext.servletContext.contextPath}/developer/createinstance/TimeCheck.prm',
     type: 'get',
     data: "totaldate="+totaldate,
     success: function (data1) {
       if(data1 == -1)
       {     
         bootbox.alert("enddate cannot be lesser than start date");
         $('#startdate').val("");
         $('#enddate').val("");
       }
       if(data1 == 0)
       {
         bootbox.alert("date cannot be same");
         $('#startdate').val("");
         $('#enddate').val("");
       }
     }
   });
}
</script>

但我相信有更好的方法来实现这一点,如果有人能提供更好的解决方案,那就太好了。

于 2014-08-26T05:27:16.470 回答