在HTML5表单中,<;input type=”radio” name=”group01” />;和<;input type=”radio” name=”group02” />;不能同时被选中。
举一反三
- 语句______用于在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>
- 语句()用于在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}
- 在表单中包含性别单选项,且默认状态为“男”被选中,下列正确的是()。 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="text" name="textfield"><INPUT type="radio" name="radio" value="女"><INPUT type="checkbox" name="checkbox" value="checkbox"><INPUT type="file" name="file">
- 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">女