在表单中包含性别单选项,且默认状态为“男”被选中,下列正确的是()。
A: <input type="radio" name="sex" checked="checked"> 男
B: <input type="radio" name="sex" checked="enabled">男
C: <input type="radio" name="sex" enabled="checked">男
D: <input type="radio" name="sex" enabled="enabled">男
A: <input type="radio" name="sex" checked="checked"> 男
B: <input type="radio" name="sex" checked="enabled">男
C: <input type="radio" name="sex" enabled="checked">男
D: <input type="radio" name="sex" enabled="enabled">男
举一反三
- 页面中有一个性别单选按钮,请设置“男”为选中状态。代码如下:<;input type="radio" name="sex">; 男<;input type="radio" name="sex">; 女正确的是( ) A: $("sex[0]").attr("checked",true); B: $(" C: sex[0]").attr("checked",true); D: $("[name=sex]:radio").attr("checked",true); E: $(":radio[name=sex]:eq(0)").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 />男
- 【单选题】页面中有一个性别单选按钮,请设置”男”为选中状态。代码如下:[br][/br][input type="radio" name="sex"] 男[br][/br][input type="radio" name="sex"] 女 正确的是[br][/br](选择一项) A: $( sex[0] ).attr( checked ,true); B: $( C: sex[0] ).attr( checked ,true); D: $( [name=sex]:radio ).attr( checked ,true); E: $(":radio[name=sex]:eq(0)").attr("checked",true);
- 语句______用于在HTML表单中添加默认选中的复选框。 A: <input type=radio name=s checked> B: <input type=radio name=s enabled> C: <input type=checkbox name=s checked> D: <input type=checkbox name=s enabled>
- 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">女