为何显示不了等级

来源:3-6 JSTL标签之choose-when-otherwise标签(上)

慕粉4214801

2017-08-11 15:01

<form action="test.jsp" method="post">

   <input type="text" name="socre" value="${param.score}">

   <input type="submit" value="提交">

</form>

<c:choose>

   <c:when test="${param.score>=90 && param.score<=100}">

      <c:out value="你的成绩为 A"></c:out>

   </c:when>

   <c:when test="${param.score>=80 && param.score<90}">

      <c:out value="你的成绩为 B"></c:out>

   </c:when>

   <c:when test="${param.score>=70 && param.score<80}">

      <c:out value="你的成绩为 C"></c:out>

   </c:when>

   <c:when test="${param.score>=60 && param.score<70}">

      <c:out value="你的成绩为 D"></c:out>

   </c:when>

   <c:when test="${param.score>=0 && param.score<60}">

      <c:out value="你的成绩为 E"></c:out>

   </c:when>

   <c:otherwise>

      <c:out value="error"></c:out>

   </c:otherwise>

</c:choose>


写回答 关注

2回答

  • 慕粉4214801
    2017-08-14 11:10:15

    已经有人告诉我了,是拼写错误name=“socre”应该是score

  • qq_旧约圣经_03165041
    2017-08-13 14:49:20

    试了半天我也没有找到问题。。。

JSP常用标签

配置及使用常用JSTL标签,这是一项必备的基本技能

46090 学习 · 80 问题

查看课程

相似问题