我已经检查了这个链接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>
请问如何设置默认值?谢谢。
我的 json 返回是这样的:
[{"data":{"id":"8","livingPlace":"789","gender":"Female"}}]
UPDATED
For the living Place,我发现当我使用$("#livingPlace").val(data[0].data.livingPlace);
它时,它实际上可以获取选择器中的值,当我点击选择器时,它可以显示正确的值,但是,当页面加载时,没有点击选择器,它只显示选择器中的第一个值,即上面示例中的 123
$.getJSON('http://mydomain.com/getmyDetail.php?user_name='+localUsername+'&role='+localRole+'&jsoncallback=?', function(data) { // the javascripts are located here
$('#livingPlace').val(data[0].data.livingPlace).find('[value="' + data[0].data.livingPlace + '"]').attr('selected', 'selected');}
我是这样做的,有问题吗?