在PHP中的一组复选框,其name属性设置正确的是
未知类型:{'options': ['[input type=”checkbox” name=”[manage]” /]', '[input type=”checkbox” name=”manage*” /]', '[input type=”checkbox” name=”manage” /]', '[input type=”checkbox” name=”manage[]” /]'], 'type': 102}
未知类型:{'options': ['[input type=”checkbox” name=”[manage]” /]', '[input type=”checkbox” name=”manage*” /]', '[input type=”checkbox” name=”manage” /]', '[input type=”checkbox” name=”manage[]” /]'], 'type': 102}
举一反三
- 下面代码点击“提交”按钮时会显示被选的复选框的值,代码中下划线处正确的代码为( )。[input type="checkbox" name="aa" value="0" /]0 [input type="checkbox" name="aa" value="1" /]1 [input type="checkbox" name="aa" value="2" /]2 [input type="checkbox" name="aa" value="3" /]3 [input type="button" onclick="abc()" value="提 交" /] [script language="JavaScript"] function abc(){ $("input: ").each(function(){ alert($(this).val()) }) } A: checkbox B: aa C: checked D: :selection
- 语句()用于在HTML表单中添加默认选中的复选框。 未知类型:{'options': ['[input type=radio name=s checked]', '[input type=radio name=s enabled]', '[input type=checkbox name=s checked]', '[input type=checkbox name=s enabled]'], 'type': 102}
- 增加表单的复选框的HTML代码是( )。 未知类型:{'options': ['[input type="submit"]', '[input type= "image"]', '[input type="text"]', '[input type="checkbox"]'], 'type': 102}
- 针对下述JSP页面,在Servlet中需要得到用户选择的爱好的数量,最合适的代码时( )。 [input type="checkbox" name="aihao" value="阅读"/]阅读; [input type="checkbox" name="aihao" value="运动"/]运动; [input type="checkbox" name="aihao" value="游戏"/]游戏; [input type="checkbox" name="aihao" value="其他"/]其他; A: equest.getParameter("aihao").length B: equest.getParameter("aihao").size C: equest.getParameterValues("aihao").length D: equest.getParameterValues("aihao").size
- 下述哪个选项可以正确产生HTML复选框? 未知类型:{'options': ['[input type="check"]', '[checkbox]', '[input type="checkbox"]', '[check]'], 'type': 102}