这是我的代码。
<td>
<select multiple="multiple" placeholder="Pick an acquirer" class="SelectBox" name="acquirerList">
<c:set var="acquirer" value="<%= session.getAttribute(\" acquirer\ ")%>" scope="page" />
<c:choose>
<c:when test='${acquirer == null}'>
<option value="" selected="selected">All</option>
</c:when>
<c:otherwise>
<option value="">All</option>
</c:otherwise>
</c:choose>
<c:forEach items="${model.acquirer}" var="acqlist">
<c:if test='${acqlist == acquirer}'>
<option selected="selected" value="${acqlist}">
<c:out value="${acqlist}" />
</option>
</c:if>
<c:if test='${acqlist != acquirer}'>
<option value="${acqlist}">
<c:out value="${acqlist}" />
</option>
<input type="checkbox" id="acquvalue" value="${acqlist}"></input>
</c:if>
</c:forEach>
</select>
</td>
有人请帮忙。我试图迭代下拉列表中的值。但是,我希望在选择下拉列表中的值时出现刻度标记符号。
答案 0 :(得分:1)
您可以使用平方根符号的unicode值221A
。
这是一种纯HTML方法
<span style="white-space: nowrap; font-size:larger">
√<span style="text-decoration:overline;"> X </span>
</span>
上面的代码将给出如下输出:
答案 1 :(得分:0)
也许更好的符号是复选标记✓&amp;#x2713;如上所述:http://en.wikipedia.org/wiki/Check_mark。