小编典典

如何将隐藏字段中的数据从一个jsp页面传递到另一页面?

jsp

我在jsp页面上的隐藏字段中有一些数据

<input type=hidden id="thisField" name="inputName">

提交时如何访问或传递此字段到另一个页面?


阅读 331

收藏
2020-06-08

共1个答案

小编典典

要传递值,必须value="hiddenValue"<input>语句中包括隐藏值,如下所示:

<input type="hidden" id="thisField" name="inputName" value="hiddenValue">

然后,通过访问请求对象的参数,以与恢复可见输入字段的值相同的方式恢复隐藏的表单值。这是一个例子:

该代码在您要隐藏值的页面上。

<form action="anotherPage.jsp" method="GET">
    <input type="hidden" id="thisField" name="inputName" value="hiddenValue">
<input type="submit">   
</form>

然后在“ anotherPage.jsp”页面上,通过调用getParameter(String name)隐式request对象的方法来调理值,如下所示:

<% String hidden = request.getParameter("inputName"); %>
The Hidden Value is <%=hidden %>

上面脚本的输出将是:

The Hidden Value is hiddenValue
2020-06-08