那不可能 最好的选择是将其显示为XML实体。
<c:forEach items="${list}" var="item" varStatus="loop"> <sup>&#${loop.index + 97};</sup> ${item}<br /></c:forEach>最终会像
<sup>a</sup> item1<br /><sup>b</sup> item2<br /><sup>c</sup> item3<br />...
该
a代表
a等。
a item1
b item2
c item3
…
当列表超过26个项目时,您只有一个问题。



