为了账号安全,请及时绑定邮箱和手机立即绑定

checked=“checked” 后面的【=”checked"】是必须的吗

为什么我用dreamweaver,写出来的代码只有checked,没有=“checked”得到的是一样的效果,而且没报错?


 

正在回答

1 回答

简单的来说,如果你使用的文档声明是html类型的文档声明,那么先下面这样写就可以了

<input text="radio" checked />

另外:如果你写文档声明是xhtml类型的话,那么就必须:

<input text="radio" checked="checked" />

还有select标签的selected属性和这个差不多。

<select id="select">
  <option value="1" selected>1</option>
  <option value="2" selected>2</option
</select>


1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

checked=“checked” 后面的【=”checked"】是必须的吗

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信