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">女
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代码:<body>请选择性别:<br /><input type="radio" name="sex" />男<input type="radio" name="sex" />女</body>以下哪段代码执行后,将会选中“女”单选按钮? A: document.getElementsByName("sex").checked=true; B: document.getElementsByName("sex")[0].checked=true; C: document.getElementsByName("sex")[2].checked=true; D: document.getElementsByName("sex")[1].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 />男
- 在表单中包含性别单选项,且默认状态为“男”被选中,下列正确的是()。 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="text" name="name" maxlength="value" size="value" value="value" /> B: <input type="password" name=" name" maxlength="value" size="value" /> C: <input type="radio" name="field_name" value="value" checked> D: <input type="checkbox" name=" name" value="value" checked />
- 以下哪种语句是实现表单提交的动作?( )[2分] A: <input type=submit name=**> B: <input type=reset name=**> C: <input type=text name=**> D: <input type=password name=**>