JSP C标签 示例 待续

来源:互联网 发布:小企业财务会计软件 编辑:程序博客网 时间:2024/04/30 08:38


<c:if>

<c:if test="${j >0 }" >${i } * ${j } = ${i * j} ;<br /></c:if>



<c:choose>


    <c:choose>     <c:when test = "${j > 0}" >     ${i } * ${j } = ${i * j} ;<br />    </c:when>    <c:otherwise><br /></c:otherwise>    </c:choose>


<c:forEach>

    <p>JSP --- 九九乘法表</p>    <%pageContext.setAttribute("star",1);pageContext.setAttribute("end", 9);%>      <c:forEach var="i" begin="${star}" end = "${end}">    <c:choose>     <c:when test = "${j > 0}" >     ${i } * ${j } = ${i * j} ;<br />    </c:when>    <c:otherwise><br /></c:otherwise>    </c:choose>    <c:forEach var ="j" begin="${star }" end="${i}">    ${j } * ${i } = ${i * j};    </c:forEach>    </c:forEach


0 0