标签:
<#if listSecMDIF?exists && (listSecMDIF?size>0)> <ul style="float: left;margin: 0px;padding-left: 25px;"> <#list listSecMDIF as item> <#if (item)?exists> <#if (item.marketMaker)?exists && item.marketMaker!=‘‘> <li style="list-style-type:disc;height: 25px;"><a href="${webPath}/institution/institutionInfo?name=${item.marketMaker!‘‘}" style="color: #5B5B5B;">${item.marketMaker}</a></li> </#if> </#if> </#list> </ul> <#else> <ul style="float: left;margin: 0px;padding-left: 0px;"> <li style="height: 25px;"><a style="color: #5B5B5B;">(无)</a></li> </ul> </#if>
取得list的长度:${fields?size}。
<#if (fields?size>0) >
</#if>
标签:
原文地址:http://www.cnblogs.com/hwaggLee/p/4653591.html