jquery读取服务器控件的ID,Name    

function SelectRadioButton()
{
//rbl_WYJDYQ.UniqueID读取Name
var selectValue=$('input[name=<%=rbl_WYJDYQ.UniqueID %>][checked]').val()
if(selectValue==0 || selectValue==1)
{
$('input[name="<%=rbl_JDFL.UniqueID %>"]').attr("disabled","disabled");
$("#<%=tb_JDYQ.ClientID %>").attr("disabled","disabled");
}
else
{
$('input[name="<%=rbl_JDFL.UniqueID %>"]').removeAttr("disabled");


// tb_JDYQ.ClientID 读取ID

$("#<%=tb_JDYQ.ClientID %>").removeAttr("disabled");
}
}

关联文档