执行“查看源代码”时隐藏字段丢失

发布于 2024-11-08 14:55:00 字数 863 浏览 0 评论 0原文

我的 jsp 表单中有两个隐藏字段。当我在浏览器中获取页面并执行“查看源代码”时,我只能看到第一个隐藏字段,而看不到第二个字段。

 <input type="hidden" name="url" id="url" value="<%=url%>" />
 <input type="hidden" name="age" id="age" value="<%=age%>" />

语法有错误吗?请帮助

更新:

代码:

<form name="displayForm" action="javascript: submitPage();"> 

<input type="hidden" name="url" id="url" value="<%=url%>" /> 
<input type="hidden" name="age" id="age" value="<%=age%>" /> 
<span class="notice required">* indicates required field</span> Source in the browser is 
<form name="displayForm" action="javascript: submitPage();"> 
<input type="hidden" name="url" id="url" value="unix.com"; /> 
<span class="notice required">* indicates required field</span>

I have two hidden fields in my jsp form. When i get the page in browser and do 'view source', I could see only the first hidden field, not the second field.

 <input type="hidden" name="url" id="url" value="<%=url%>" />
 <input type="hidden" name="age" id="age" value="<%=age%>" />

Is the syntax wrong? Please help

Update:

Code:

<form name="displayForm" action="javascript: submitPage();"> 

<input type="hidden" name="url" id="url" value="<%=url%>" /> 
<input type="hidden" name="age" id="age" value="<%=age%>" /> 
<span class="notice required">* indicates required field</span> Source in the browser is 
<form name="displayForm" action="javascript: submitPage();"> 
<input type="hidden" name="url" id="url" value="unix.com"; /> 
<span class="notice required">* indicates required field</span>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

宣告ˉ结束 2024-11-15 14:55:00

确保为 JSP 提供服务的 tomcat 已实际部署您的更改。尝试找到文件“jspfilename_jsp.java”并查看隐藏字段语句是否确实在其中。您可能想看看 Lambda Probe for Tomcat,它只需单击鼠标即可清理缓存,强制重建。

Make sure that the tomcat serving the JSP has actually deployed your changes. Try to locate the file "jspfilename_jsp.java" and look if your hidden field statements are actually in there. You might want to take a look at Lambda Probe for Tomcat, which cleans the cache with a click of a mouse, forcing a rebuild.

花期渐远 2024-11-15 14:55:00

不,它一定在那里。您可能有条件地渲染它。

No. It must be there. You might be conditionally rendering it.

半窗疏影 2024-11-15 14:55:00

您使用哪种浏览器?您是否尝试使用某种“开发人员工具”(Chrome - 开发人员工具、FF - Firebug、IE8+ - 开发人员工具)来检查它?

当您提交表格时会发生什么,您会得到什么“年龄”?

which browser do you use? Did you try to inspect it with some sort of "developer tool" (Chrome - Developer tools, FF - Firebug, IE8+ - Developer tools)?

When you submit the form what happens, what do you get for "age"?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文