如何在JSP中比较日期?

How to compare date in JSP?

提问人:darine 提问时间:2/28/2023 更新时间:2/28/2023 访问量:14

问:

我想要 jsp 中的 2 个日期: = 2023-01-30facture.dateFacture

<s:if test=" facture.dateFacture < 2023-12-31  ">
                                        <sas:label label="accident.noteMotif" id="lbnoteMotif"
                        value="${facture.dateFacture}"></sas:label>
                                        <td class="ttl timbre_fiscale left" id="timbre_fiscale"><%=tn.meg.Constants.TIMBRE_500%>TND</td>
                                        </s:if> 
                                        <s:else> 
                                        <td class="ttl timbre_fiscale left" id="timbre_fiscal"><%=tn.meg.Constants.TIMBRE_600%>TND</td>
                                        </s:else> 

这是行不通的!但是当我用它更改运算符时,它就可以工作了。<=<s:if test=" facture.dateFacture = 2023-01-30 ">

谁能知道解决方案?

HTML 日期 if 语句 JSP 比较

评论


答: 暂无答案