当前位置: 代码迷 >> HTML/CSS >> html中radio设立默认值
  详细解决方案

html中radio设立默认值

热度:119   发布时间:2012-10-09 10:21:45.0
html中radio设置默认值
在radio的属性中添加cheeck属性,即可实现在html中设置radio默认值

<input type="radio" name="sex" value="2" checked="true" />

当然,<input type="radio" name="sex" value="2"  checked />

也是可以实现的。
  相关解决方案