運用於判斷表達式中時,關係判斷使用 gt / ge / eq / lt / le / ne (即:使用縮寫)less
1 gt: great than(大於)>
2 ge: great equal(大於等於)>=
3 eq: equal(等於)==
4 lt: less than(小於)<
5 le: less equal(小於等於)<=
6 ne: not equal(不等於)!=
以th:if爲例spa
1 <td th:if="${prj.DOC_DESC} ne null">
2 <!--此處ne如果換成not equal或者!=,則會js判斷錯誤,沒法正常執行-->
3 <a th:href="#">下載</a>
4 <a th:href="#">預覽</a>
5 </td>
更多thymeleaf詳情能夠訪問易學教程code