0

我只想获取 String 传递的值,然后放入<p></p>. 怎么做?

<% if(request.getParameter("status") != null) { %>
        <% if(request.getParameter("status").equals("ok")) { 
            String pass = request.getParameter("pass");%>
            <p>put the value of pass here in this line</p>
        <% } %>
    <% } %>
4

2 回答 2

0

使用下面的代码更改段落行

<p><%= pass%></p>
于 2013-03-11T13:23:35.640 回答
0

使用 JSTL

<c:out value="${pass}" />

使用小脚本(不太推荐)

<%= pass %>
于 2013-03-11T13:24:20.097 回答