Struts2 JQuery DatePicker:将maxDate设置为今天

时间:2014-12-03 13:33:47

标签: jquery struts2 datepicker struts2-jquery struts2-jquery-plugin

我希望将maxDate设置为当前日期。

我试过this answer,但我仍有问题。

这是我的代码:

<sj:datepicker id = "dob"        
             name = "dateOfBirth" 
            label = "Date Of Birth" 
      changeMonth = "true"  
       changeYear = "true"    
        yearRange = "1980" 
          maxDate = "0"      
         readonly = "true" />

1 个答案:

答案 0 :(得分:1)

使用

<sj:datepicker 
    ....
    maxDate="%{new java.util.Date()}"
/>

或从getter返回new Date(),并使用您链接的其他答案中的代码。