亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

js判斷radiobuttonlist的選中值顯示/隱藏其它模塊的實(shí)現(xiàn)方法

 更新時(shí)間:2016年08月25日 10:14:40   投稿:jingxian  
下面小編就為大家?guī)?lái)一篇js判斷radiobuttonlist的選中值顯示/隱藏其它模塊的實(shí)現(xiàn)方法。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧

js判斷radiobuttonlist的選中值顯示/隱藏其它模塊的實(shí)現(xiàn)方法

<script>
$(function () {

var SelectVal = $("input[name='rblGJS']:checked").val();

if (SelectVal == 1) {

$("#gjsbh").show();
}

$("#<%=rblGJS.ClientID %>").change(function () {

SelectVal = $("input[name='rblGJS']:checked").val();
if (SelectVal == 1) {

$("#gjsbh").show();
}
else {
$("#gjsbh").hide();

}

 

});
})
</script>

 

<tr>
<td align="right" class="label_style">是否估價(jià)師:</td>
<td align="left" class="content_style">
<asp:RadioButtonList ID="rblGJS" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Value="1" >是</asp:ListItem>
<asp:ListItem Value="0" Selected="True">否</asp:ListItem>
</asp:RadioButtonList>
</td>

</tr>
<tr id="gjsbh" hidden="hidden" >
<td id="right" align="right" class="label_style">估價(jià)師編號(hào):</td>
<td id="left" align="left" class="content_style">
<asp:TextBox ID="txtGJSBH" runat="server" CssClass="easyui-textbox" Height="90%" Width="280px"></asp:TextBox>

</td>

</tr>

以上這篇js判斷radiobuttonlist的選中值顯示/隱藏其它模塊的實(shí)現(xiàn)方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論