0

私の行動では:

.....
String status = "add";
servletRequest.setAttribute("button", status);
....

私のJSPでは:

<c:if test='${button == "add"}'>
  <c:set var="edittype" value="add" />
</c:if>
<c:if test='${button == "update"}'>
  <c:set var="edittype" value="update" />
</c:if>

私が試してみました:

<html:hidden property ="" value="edittype" />

<html:hidden property ="" value="${button}" /> 

そしてどちらの仕事もありません。どうすればいいですか?

4

1 に答える 1

0

これを試して :

ふたつのやり方

1>

    <html:hidden property ="reqButtonValue" value="${param.button}" /> 

    <c:if test="${reqButtonValue=='add'}">
  <c:set var="edittype" value="add" />
</c:if>

2>

<c:if test="${param.button=='add'}">
      <c:set var="edittype" value="add" />
</c:if>
于 2013-01-09T14:16:34.943 に答える