我在jsp页面的隐藏字段中有一些数据 input type=hidden id="thisField" name="inputName" 如何访问或传递此字段提交到另一个页面? 要传递该值,您必须在 input中包含隐藏值value =“hiddenValue”.声明如
<input type=hidden id="thisField" name="inputName">
如何访问或传递此字段提交到另一个页面?
要传递该值,您必须在< input>中包含隐藏值value =“hiddenValue”.声明如下:<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)方法来恢复该值,如下所示:
<% String hidden = request.getParameter("inputName"); %> The Hidden Value is <%=hidden %>
上述脚本的输出将是:
The Hidden Value is hiddenValue