用户单击行时将数据发送到新的jsp页面

时间:2011-09-10 06:07:54

标签: javascript html jsp jstl

<form action="" method="get" enctype="application/x-www-form-urlencoded">

        <h3>Current Users</h3>
         <c:if test="${!empty userList}">
        <table class="data" id="results"   border="1"  >
        <tr>
            <th>Name</th>
            <th>Email</th>
            <th>Last Seen</th>

        </tr>
        <c:forEach items="${userList}" var="user">
         <tr onmouseover="ChangeColor(this, true);" 
              onmouseout="ChangeColor(this, false);" 
              onclick="DoNav('${pageContext.request.contextPath}/secure/detailUserView');">
            <td>${user.name}</td>
            <td>${user.email}</td>
            <td>${user.create_date}</td> 
        </tr> >
        </c:forEach>
        </table>
        </c:if>
        <div id="pageNavPosition"></div>

      </form>

现在我想要的是在用户点击特定行时将用户信息发送到新的jsp页面。我怎么能这样做,请建议

罗米。

1 个答案:

答案 0 :(得分:0)

http://www.w3schools.com/html/html_forms.asp

您可以使用表单提交数据。标签上的值将作为请求参数提交到表单操作中指定的URL。