Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何从 Java 中的请求 servlet 中获取标签的值。getParameter(nameOfLabel)对这个有用吗?或者它只适用于输入?无论如何,我想知道如何做到这一点。
getParameter(nameOfLabel)
您可以使用标签创建一个隐藏input的:value
input
value
<input type="hidden" value="labelValue" name="labelName" />
然后用getParameter("labelName")它来获取它的值。
getParameter("labelName")