我已经检查了这个链接Set radio button 'checked' in jquery based on ID但是,似乎不太适合我。这是我的代码
<label for="basic" class="basic">Gender:</label>
<fieldset data-type="horizontal" data-role="controlgroup" data-mini="true">
<input type="radio" name="gender" id="radio-mini-1" value="Male" checked="checked" />
<label for="radio-mini-1">Male</label>
<input type="radio" name="gender" id="radio-mini-3" value="Female" />
<label for="radio-mini-3">Female</label>
</fieldset>
和
<label for="select-choice-min" class="select">Living Place:</label>
<select name="select-choice-min" id="livingPlace" data-mini="true">
<optgroup label="AAA">
<option value="123">123</option>
<option value="456">456</option>
</optgroup>
<optgroup label="BBB">
<option value="789">789</option>
<option value="246">246</option>
</optgroup>
</select>
我可以简单地使用以下代码设置默认值吗?好像不行
$("#livingPlace :selected").text(data[0].data.livingPlace);
//$('#livingPlace option[value=data[0].data.livingPlace]').attr("selected",true);
$("input[name=gender]:checked").val(data[0].data.gender);