HTML JSP代码创建问题
我有一个提交按钮,创建于 - 基本上当单击此按钮时,我希望在提交按钮所在的位置下方出现一个组框......有什么建议吗?
我试图从这次点击中获取请求,但这对我没有帮助。 我想逻辑应该是这样的:
<form>
<input type="checkbox" name="group" value="Yes" />Yes
<input type="checkbox" name="group" value="No" /> No
<input type="submit" value="submit" />
</form>
<%
String[] select = request.getParameterValues("group");
/* Add code creation here */
%>
你能想到什么建议或例子吗?
非常感谢, U。
I have a submit button, created from - basically when this is clicked I want a groupbox to appear below where the submit button is....any suggestions?
I've tried to get the request given of from this click however it doesn't help me.
I thought the logic would be similar to this:
<form>
<input type="checkbox" name="group" value="Yes" />Yes
<input type="checkbox" name="group" value="No" /> No
<input type="submit" value="submit" />
</form>
<%
String[] select = request.getParameterValues("group");
/* Add code creation here */
%>
Any suggestions or examples you can think of?
Thanks greatly,
U.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先用单选按钮替换复选框。现在可以同时检查
Yes
和No
。这毫无意义。然后,使用 JSTL
标签根据参数有条件地显示内容/或 EL 中的其他作用域变量。First replace the checkboxes by radio buttons. Right now it's possible to check both
Yes
andNo
. This makes no sense.Then, use JSTL
<c:if>
tag to conditionally display content depending on parameters and/or other scoped variables in EL.