需要单选框表单开始就被选中,则要在input中设置checked=“checked”()。
举一反三
- checked属性表明单选框或者多选框是否选中。
- 表单:要使单选框或复选框默认为已选定,要在input标签中加( )属性。 A: selected B: enabled C: type D: checked
- 要实现表单元素中的复选框或单选框默认为已选定,要在input标签中加( )属性 A: selected B: disabled C: type D: checked
- 在表单中包含性别单选项,且默认状态为“男”被选中,下列正确的是()。 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">男
- 表单元素中状态属性checked的值,可以设置为true和checked。( )