0

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

我已经尝试过这个答案,但我仍然有问题。

这是我的代码:

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

1 回答 1

1

利用

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

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

于 2014-12-04T09:15:20.160 回答