JSTL和select标签的组合使用
2020-12-13 02:22
标签:style blog class code java color 1.用于根据不同的值显示对应的内容,不能选择 2.用于根据值设置select的默认选项,可以选择 JSTL和select标签的组合使用,搜素材,soscw.com JSTL和select标签的组合使用 标签:style blog class code java color 原文地址:http://www.cnblogs.com/geb515/p/3717674.htmlselect name="grade">
c:choose>
c:when test="${grade == ‘A‘}">
option value="A" selected>Aoption>
c:when>
c:when test="${grade == ‘B‘}">
option value="B" selected>Boption>
c:when>
c:when test="${grade == ‘C‘}">
option value="C" selected>Coption>
c:when>
c:choose>
select>
select name="grade">
option value="A"