对于以下代码,描述正确的是( )。<;input type="radio" name="sex" value="Male" checked>;男<;input type="radio" name="gender" value="Female" checked>;女
A: “男”和“女”只能二者选一
B: 默认选择“女”
C: “男”和“女”都要选择
D: 可以只选“男”,不选“女”
A: “男”和“女”只能二者选一
B: 默认选择“女”
C: “男”和“女”都要选择
D: 可以只选“男”,不选“女”
举一反三
- 如下代码中,设置女为默认选项的属性是<;input type="radio" name="sex" value="male"/>;男<;input type="radio" name="sex" value="female"/>;女 A: option="option" B: selected="selected" C: checked="checked" D: check="default"
- <;input type=”()” name=”sex” value=”0” checked>;男<;input type=”()” name=sex value=”2”>;女上面代码,添加了一组单选按钮,用于选择性别。 A: radio,radio B: text,text C: checkbox,checkbox D: radio,text
- input控件是表单中最重要的控件,如果使用input控件表示二选一的性别选项,则下列代码中正确的是 A: <input type="sex">男<input type="sex">女 B: <input type="sex"name="radio">男<input type="sex"name="radio">女 C: <input type="radio"name="nan">男<input type="radio"name="nu">女 D: <input type="radio" name="sex">男<input type="radio" name="sex">女
- 在网页中有如下HTML代码:[br][/br] [input type="radio" name="sex" value="man"/]男 [input type="radio" name="sex" value="woman"/]女 则设置选择状态为“女”,正确jquery实现代码为: A: $("input:radio").get(0).attr("checked",true); B: $( input[type=radio] )[1].attr( checked ,true); C: $( input[type=radio] ).eq(1).attr( checked ,true); D: $("sex:radio").eq(1).attr("checked",true);
- 在表单中,设置单选按钮 性别选项 "男" 切默认状态为 "男" 被选中,下列代码正确的是( ) A: <input type="radio" name="gender" value="男" checked />男 B: <input type="radio" name="gender" value="男" enabled />男 C: <input type="checkbox" name="gender" value="男" checked />男 D: <input type="checkbox" name="gender" value="男" enabled />男