-1

如何根据值选择元素?例如,我想在RadiobuttonList控件中选择一个具有value=2.

谢谢

4

3 回答 3

1

你可以试试

$("#<%=rbl.ClientID%> input[value=2]").attr('checked', true);  

或者

$('#<%=rbl.ClientID %>').find("input[value=2]").attr("checked", "checked");

注意 rbl 是单选按钮列表的 id

于 2012-04-24T06:04:16.743 回答
1
$('#{id of RadiobuttonList} input[value="2"]').attr('checked', 'checked')

或者对于 jQuery 1.6+:

$('#{id of RadiobuttonList} input[value="2"]').prop('checked', true)
于 2012-04-24T06:04:19.553 回答
1

你可以使用这个 CSS 选择器:

input[type="radio"][value="2"]

在jQuery中

$('input[type="radio"][value="2"]')
于 2012-04-24T06:07:05.597 回答