在HTML/JSP,得到遏制單選按鈕值從JSP到Servlet的
<input type="radio" value="10" name="a">10 Records
<input type="radio" value="20" name="a">20 Records
<input type="radio" value="50" name="a">50 Records
在Servlet中,
String val= request.getParameter("a");
System.out.println("Record is : "+val);
可變val
回報null
。
您確定您在提交時選擇了一個嗎? – brso05 2014-10-30 17:11:50
你怎麼發佈它? – 2014-10-30 17:11:55
是的,這是我提交時選擇的一個 – 2014-10-30 17:12:47