0

在 XHTML 中,我知道这对于选中的单选按钮是正确的:

<input type="radio" checked="checked" name="bar" value="baz" />

并且没有选中属性意味着单选按钮未选中:

<input type="radio" name="bar" value="baz" />

但这对于未选中的单选按钮是否也是正确的:

<input type="radio" checked="" name="bar" value="baz" />
4

1 回答 1

0

没有实际使用

<input type="radio" checked="" name="bar" value="baz" />

还将呈现在我见过的浏览器中选中的复选框(看起来多么奇怪)!

于 2012-11-28T15:25:37.217 回答