需求是当systemlist为空,则不显示A标签;当别的端口给systemlist赋值后,在页面不刷新时A标签自动显示,求解决方案!
html代码如下:
<logic:notEmpty name="systemlist" >
<logic:iterate id="systemlistvo" name="systemlist" indexId="index">
<logic:greaterThan value="0" name="index">
<td width="1%">|</td>
</logic:greaterThan>
<td width="15%" align="center" class="font12">
<a href="/bxframe/System.do?method=systemInfo&code=${systemlistvo.code}" target="mainFrame" onclick="showHelp('${systemlistvo.code}')">${systemlistvo.name}</a>
</td>
</logic:iterate>
</logic:notEmpty>
在<a>标签里加if判断呢,比如说if = "systemlist.length != 0"
notEmpty已经在判断List了,是想让该List被赋值的时候,保持页面不刷新呈现A标签内容