要选择出表单中所有被勾选的复选框元素应该怎么写选择器?
A: input[type="checkbox"][checked]
B: input[type="checkboxchecked"]
C: checkbox:checked
D: input[type="checkbox"]:checked
A: input[type="checkbox"][checked]
B: input[type="checkboxchecked"]
C: checkbox:checked
D: input[type="checkbox"]:checked
举一反三
- 在HTML5中,代码<input checked="checked" type="checkbox"/>,可以简写为( )。 A: <input checked type="checkbox"/> B: <input checked checkbox/> C: <input "checked" "checkbox"> D: <input "checked" type="checkbox"/>
- 语句______用于在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>
- Form中,[input type=" checkbox " name="" value="" checked ],checked表示该复选框缺省时是否被选中。
- checkbox复选框表单的属性包括()。 A: type B: name C: checked D: disabled
- <;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