这里有两点:发现控制并实施检查。 In ASP. NET,即使这些集装箱没有伊德,你的实际识别和名称仍将最终根据显示的“服务器”集装箱进行变换。
Rendered ASP。 网络控制总是以你开始的同样名称结束,例如:
<input type="radio" runat="server" id="sector1Radio" title="Sector1" />
可能终止
<input type="radio" runat="server" id="ctl0$ctl0$sector1Radio" name="ctl0_ctl0_SectorGroup" title="Sector1" />
如果你在JQuery使用“contains”甄选合成物,你就能够找到这一要素,即便是在作出这一选择之后。 因此,一旦发现这一要素,你可以使用:
$("input[type= radio ][id*= $sector1Radio ]")
该星座将发现任何无线电台,其名称为“$ Sector1Radio”。
一旦具备这一要素,你就可以使用以下代码加以检查或检查,你从点击另一要素的事件中叫你。
// check the radio button
$("input[type= radio ][id*= $sector1Radio ]").attr( checked , true);
// uncheck the radio button
$("input[type= radio ][id*= $sector1Radio ]").attr( checked , false);
最后一件事......如果你只想一块文字在压力时点击纽顿(把它放在一个标签上,并将相关的财产置于你的无线电台的控制名称之下,就象这样......
<input type="radio" runat="server" id="sector1Radio" title="Sector1" />
<asp:label runat="server" id="lblsector1Radio" associatedControlID="sector1Radio">clicking here clicks and unclicks the radio button</asp:label>