14

我有一个单选按钮列表。我需要根据我拥有的变量检查其中一个。我如何做到这一点?问题是我无法控制单选按钮列表的外观。所以这是我的代码:

<script>
var preSelect = 'Asian';
</script>

<input type="radio" name="CAT_Custom_378508" id="CAT_Custom_378508_0" value="Alaskan Native" />
Alaskan Native<br />
<input type="radio" name="CAT_Custom_378508" id="CAT_Custom_378508_1" value="Asian" />
Asian<br />
<input type="radio" name="CAT_Custom_378508" id="CAT_Custom_378508_2" value="African American" />
African American<br />
<input type="radio" name="CAT_Custom_378508" id="CAT_Custom_378508_3" value="Caucasian" />
Caucasian<br />
<input type="radio" name="CAT_Custom_378508" id="CAT_Custom_378508_4" value="Hispanic" />
Hispanic<br />
<input type="radio" name="CAT_Custom_378508" id="CAT_Custom_378508_5" value="Native American" />
Native American<br />
<input type="radio" name="CAT_Custom_378508" id="CAT_Custom_378508_6" value="Pacific Islander" />
Pacific Islander<br />
<input type="radio" name="CAT_Custom_378508" id="CAT_Custom_378508_7" value="Other" />
Other
4

2 回答 2

21

您可以使用属性等于选择器来定位正确的收音机,然后使用.prop()设置选中的属性

$('input[name=CAT_Custom_378508][value=' + preSelect + ']').prop('checked',true)

小提琴

于 2013-07-15T17:31:43.653 回答
4

尝试这个:

$('input[type=radio][value=' + preSelect + ']').attr('checked', true);
于 2013-07-15T17:33:04.220 回答