gpt4 book ai didi

forms - JSP 单选按钮值

转载 作者:行者123 更新时间:2023-12-02 05:09:11 25 4
gpt4 key购买 nike

我想知道如何获取单选按钮值。所以假设,我有一个有两个单选按钮的表单。我想获得与按钮关联的值。但是,当我尝试时,我得到了 null。

表格部分

<form method="post" action="insert.jsp" enctype=text/plain>
<table>
<INPUT TYPE="radio" name="command" value="0">Run<INPUT TYPE="radio" NAME="command" VALUE="1">Walk<BR>

Insert.jsp部分

String sCommand=(String)request.getParameter("command");
out.println(sCommand);

所以依次打印出null

最佳答案

使用 GET 方法代替 POST 并且您的代码将运行。 (如果您想使用“text/plain”),还可以查看@divyabharathi 为 POST 方法的正确 enctype 给出的答案。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<form method="get" action="insert.jsp" enctype=text/plain>
<INPUT TYPE="radio" name="command" value="0"/>Run
<INPUT TYPE="radio" NAME="command" VALUE="1"/>Walk
<INPUT TYPE="submit" VALUE="submit" />
</form>
<%
String sCommand = request.getParameter("command");
out.println(sCommand);
%>
</body>
</html>

但我强烈建议您不要在 JSP 中使用 scriplets,请查看 How to avoid Java Code in JSP-Files?

关于forms - JSP 单选按钮值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15779588/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com