如何根据值选择元素?例如,我想在RadiobuttonList
控件中选择一个具有value=2
.
谢谢
你可以试试
$("#<%=rbl.ClientID%> input[value=2]").attr('checked', true);
或者
$('#<%=rbl.ClientID %>').find("input[value=2]").attr("checked", "checked");
注意 rbl 是单选按钮列表的 id
$('#{id of RadiobuttonList} input[value="2"]').attr('checked', 'checked')
或者对于 jQuery 1.6+:
$('#{id of RadiobuttonList} input[value="2"]').prop('checked', true)
你可以使用这个 CSS 选择器:
input[type="radio"][value="2"]
在jQuery中
$('input[type="radio"][value="2"]')