A: <input checked type="checkbox"/>
B: <input checked checkbox/>
C: <input "checked" "checkbox">
D: <input "checked" type="checkbox"/>
举一反三
- 在表单中,设置单选按钮 性别选项 "男" 切默认状态为 "男" 被选中,下列代码正确的是( ) 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 />男
- HTML表单中,添加文本域的HTML代码是( ) A: <input type="submit"></input> B: <input type="text"></input> C: <input type="radio"></input> D: <input type="checkbox"></input>
- 单行文本输入框的语法为? 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 />
- 在下列的 HTML 中,哪个可以产生复选框?( ) A: <input type="check"> B: <checkbox> C: <input type="checkbox"> D: <check>
- <input>元素拥有多个type属性值,表示单行文本输入框的是() A: <input type="text"> B: <input type="password"> C: <input type="radio"> D: <input type="checkbox">
内容
- 0
要选择出表单中所有被勾选的复选框元素应该怎么写选择器? A: input[type="checkbox"][checked] B: input[type="checkboxchecked"] C: checkbox:checked D: input[type="checkbox"]:checked
- 1
假设有如下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;
- 2
在表单中的复选框代码是() A: <select><option></option></select> B: <textarea></textarea> C: <input type="checkbox"> D: <input type="hidden">
- 3
如果要在表单里创建一个普通文本框,以下写法中正确的是( )。 A: <input> B: <input type="password"> C: <input type="checkbox"> D: <input type="radio">
- 4
如果要在表单里创建一个普通文本框,以下写法中正确的是( )。(2.5) A: <INPUT> B: <INPUT type="password"> C: <INPUT type="checkbox"> D: <INPUT type="radio">