语句(43)用于在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>
第1题:
【多选题】设有以下两行HTML代码: 01 <input name="xm" type="text" /> 02 <input type="password" /> 下列哪些选择器仅可以选择01行标签
A.input{}
B.input[name]{}
C.input[type]{}
D.input[name=xm]{}
E.input[name*=xm]{}
第2题:
要实现表单元素中的复选框或单选框默认为已选定,要在input标签中加()属性
A.selected
B.disabled
C.type
D.checked
第3题:
在表单中包含性别单选项,且默认状态为“男”被选中,下列正确的是()。
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">男
第4题:
1、要实现表单元素中的复选框或单选框默认为已选定,要在input标签中加()属性
A.selected
B.disabled
C.type
D.checked
第5题:
4、增加表单的文本域的HTML代码是:
A.<input type=submit></input>
B.<textarea name="textarea"></textarea>
C.<input type=radio></input>
D.<input type=checkbox></input>