如果请求页面中有两个表示性别的单选按钮:<;p>;性别:<;input type="radio" name="xingbie" id="radio" value="男" />; 男<;input name="xingbie" type="radio" id="radio2" value="女" checked="checked" />; 女<;/p>;该请求页面提交后,下面哪个语句可以获得用户选择的性别信息。 A: request.getParameter(xingbie); B: request.getParameter("xingbie");
如果请求页面中有两个表示性别的单选按钮:<;p>;性别:<;input type="radio" name="xingbie" id="radio" value="男" />; 男<;input name="xingbie" type="radio" id="radio2" value="女" checked="checked" />; 女<;/p>;该请求页面提交后,下面哪个语句可以获得用户选择的性别信息。 A: request.getParameter(xingbie); B: request.getParameter("xingbie");
如果请求页面中有两个表示性别的单选按钮: 性别: [input type="radio" name="xingbie" id="radio" value="男" /] 男 [input name="xingbie" type="radio" id="radio2" value="女" checked="checked" /] 女 该请求页面提交后,下面( )语句可以获得用户选择的性别信息。 A: equest.getParameter("radio"); B: equest.getParameter("xingbie"); C: equest.getAttribute("xingbie"); D: equest.getAttribute("radio");
如果请求页面中有两个表示性别的单选按钮: 性别: [input type="radio" name="xingbie" id="radio" value="男" /] 男 [input name="xingbie" type="radio" id="radio2" value="女" checked="checked" /] 女 该请求页面提交后,下面( )语句可以获得用户选择的性别信息。 A: equest.getParameter("radio"); B: equest.getParameter("xingbie"); C: equest.getAttribute("xingbie"); D: equest.getAttribute("radio");
1