本文介绍了如何在Spring MVC 3.0中传递一个隐藏的值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在Spring MVC 3.0中传递一个隐藏值
我不能使用
<$赋值给隐藏字段c $ c>< form:hidden path =test/> 。如何设置测试字段的值并在服务器端访问它。
谢谢
解决方案
< form:hidden path =teststyle =display:none/>
How to pass a hidden value in a form in Spring MVC 3.0
I am not able to assign a value to a hidden field using <form:hidden path="test" />
. How can I set the value of the test field and access it on the server side.
thanks
解决方案
<form:hidden path="test" style="display:none"/>
这篇关于如何在Spring MVC 3.0中传递一个隐藏的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-11 20:33