我正在处理我正在执行的代码问题。在我的代码中,我在一个if语句中创建了JSP代码本身的单选按钮选项。当我尝试在另一个JSP页面中调用单选按钮的值时,它似乎不起作用。这是第一个JSP页面的代码。
<form name="form4" method="post" action="PhoneInfo.jsp">
<div style="width:200px; height:85px; border:1px solid LightBlue;">
<%
String iPhone4 = "iPhone 4";
String SGSIII = "Samsung Galaxy SIII";
if(request.getParameter("radio_choice") != null && request.getParameter("radio_choice").equals("iPhone")) {
out.println("<input type = 'radio' name = 'choice' value = '"+iPhone4+"'/>" + "iPhone 4");
}
else if(request.getParameter("radio_choice") != null && request.getParameter("radio_choice").equals("Android")) {
out.println("<input type = 'radio' name = 'choice' value = '"+SGSIII+"'/>" + "Samsung Galaxy SIII");
}
%>
我的第二个JSP页面,我调用了值:
<%
if(request.getParameter("choice") != null && request.getParameter("choice").equals("iPhone4")) {
out.println("hello");
}
%>
感谢您抽出宝贵时间提供帮助