项目jsp页面上用隐藏input框接收获取数据,在跳转入另一页面前,js操作修改数据,但返回时发现无效。
原页面:
<input type="hidden" value="<%=request.getAttribute("wxname")%>" id="wxname"/>
解决方法:
将 type="hidden" 换成 style="display:none" 解决。
原文地址:https://www.cnblogs.com/linjiangxian/p/11460894.html
时间: 2024-10-11 21:22:43