标签中加 checked , 默认选中.
<input type="radio" name="reset" id='reset' value="1" />
<input type="radio" name="reset" id='unreset' value="0" checked/>
$('#reset').prop('checked') //返回true(选中)或false(未选中)
标签中加 checked , 默认选中.
<input type="radio" name="reset" id='reset' value="1" />
<input type="radio" name="reset" id='unreset' value="0" checked/>
$('#reset').prop('checked') //返回true(选中)或false(未选中)