猿问

​怎么用JSTL替换其中的JSP脚本元素?

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<html>

<head>

<meta charset="utf-8">

<title>Simplicity</title>

</head>

<body>

  <img src="image/xplogo.gif">

  <ul>



    <%

        int loop = 1; // 默认值

        String loopStr = request.getParameter("loop");

        // 判断loopStr是否为空

        if (loopStr != null && loopStr.length() > 0) {

            loop = Integer.valueOf(loopStr);

        }

    %>  

    <%-- Simple comment at server side --%>

    <!-- Simple comment at client side -->

    

    

    <%

        for (int x = 0; x < loop; x++) {

    %>

   

    <li><h2>Do the simplest thing that could possibly work.</h2></li>

    <li><h2>You Aren't Going to Need It. [YAGNI]</h2></li>

    <%

        }

    %>

  </ul>

  <%--!String userName = "Kent Beck"; --%>

  <%

      String name = "Kent Beck";

  %>

  <%=name%>

</body>

</html>


erutdioup8556
浏览 2027回答 3
3回答

假面骑士真理

自己去学jstl的标签就知道它的作用了

妖精づ凯文

自定义标签技术,你去学一下吧
随时随地看视频慕课网APP
我要回答