HTML选择下拉框-在顶部显示优先级值

时间:2019-02-01 12:53:48

标签: html jsp drop-down-menu jsp-tags

我有一个键列表,值存储在地图中。它有100多个值,我想在前10个下拉选项中显示最常用的值,然后其余全部显示。

<select name="attribute" class="form-control" id="attributes" multiple> 
   <c:forEach items="${attributeList}" var="attribute"> 
      <option value="${attribute.key}">${attribute.value}</option> 
   </c:forEach> 
</select>

目前它按照字母顺序显示所有选项。

0 个答案:

没有答案