html中radio设置默认值 在radio的属性中添加cheeck属性,即可实现在html中设置radio默认值 <input type="radio" name="sex" value="2" checked="true" />当然,<input type="radio" name="sex" value="2" checked />也是可以实现的。