FreeMarker 集合遍历
<#if clientSourceData?exists> =====>>> <#if clientSourceDate ??>
<#list clientSourceData?keys as key>
<tr>
<td>${key}</td>
<td>${clientSourceData.get(key)}</td>
</tr>
</#list>
</#if>
<span class="hyper-link"><u>起飞机场</u>
<i class="arrow-down"></i>
<div class="hyper-text hyper-plainlist">
<ul>
<li fake class="flightHide"><label><input fake type="radio" name="fromAirport4Select" fromAirPort class="fromAirPort" value='' onclick="selectFromAirPort($(this))"></label></li>
#for(var key in data.commonFlightSearchResult.fromAirports){#
<li><label><input type="radio" name="fromAirport4Select" fromAirPort class="fromAirPort" value='#=key#' onclick="selectFromAirPort($(this))">#=data.commonFlightSearchResult.fromAirports[key]#</label></li>
#}#
</ul>
</div>
</span>
<select id="departureAirportFilter" data-role="dropdownlist" style="width:120px;">
<option value="">起飞机场</option>
#for(var key in selectableDepartureAirports){#
<option value="#=selectableDepartureAirports[key]#" onclick="airCoFilter($(this))">#=key#</option>
#}#
</select>