有点纠结,在迭代里进行比较,如果条件成立,显示文字,不成立则显示按钮
两个比较的值都是为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"'>
就不成立了......
我想知道哪边出现问题?或者怎么解决