操作成功 <c:choose> <c:when test="${news.rule==0 }"><a href="index.jsp">返回</a></c:when> <c:otherwise><a href="index2.jsp"></c:otherwise> </c:choose>修改这段代码使通过不同rule访问到不同的index页面
时间: 2023-08-14 19:21:14 浏览: 117
<c:choose>标签-EL AND JSTL
可以使用多个<c:when>标签来实现不同规则对应不同的页面,修改后的代码如下:
```html
<c:choose>
<c:when test="${news.rule==0}">
<a href="index.jsp">返回</a>
</c:when>
<c:when test="${news.rule==1}">
<a href="index1.jsp">返回</a>
</c:when>
<c:when test="${news.rule==2}">
<a href="index2.jsp">返回</a>
</c:when>
<c:otherwise>
<a href="index3.jsp">返回</a>
</c:otherwise>
</c:choose>
```
在这个例子中,当${news.rule}的值为0时,跳转到index.jsp页面;当值为1时,跳转到index1.jsp页面;当值为2时,跳转到index2.jsp页面;否则跳转到index3.jsp页面。
阅读全文