有点纠结,在迭代里进行比较,如果条件成立,显示文字,不成立则显示按钮两个比较的值都是为Long型的<s:iterator value="payTerraceList"> <tr> <td><s:property value="payTerraceName"/></td> <td> <s:if test="payTerraceId==payStyle2.payTerrace.payTerraceId"> <a style="color: red;">当前绑定接口 ${payStyle2.payTerrace.payTerraceId}==${payTerraceId}</a> </s:if> <s:else> <input type="button" value="绑定此接口" class="smallbtn" id="upChoos2" onclick="binDingPayTerrace('${payTerraceId}','${payStyle2.payStyleId}')"> </s:else> </td> </tr> </s:iterator> 页面显示结果如下面附件所示<s:if test="payTerraceId==payStyle2.payTerrace.payTerraceId">我尝试过<s:if test="%{payTerraceId==payStyle2.payTerrace.payTerraceId}">但是貌似结果一样 直接替换成<s:if test='"13076052772170005"=="13076052772170003"'>就不成立了......
2 回答
慕雪6442864
TA贡献1812条经验 获得超5个赞
用<s:if test="#{payTerraceId==payStyle2.payTerrace.payTerraceId}">、<s:if test="payTerraceId eq payStyle2.payTerrace.payTerraceId"> 和<s:if test="%{payTerraceId eq payStyle2.payTerrace.payTerraceId}">试试,好久没用了,记不太清了。希望有帮助
- 2 回答
- 0 关注
- 141 浏览
添加回答
举报
0/150
提交
取消