码迷,mamicode.com
首页 > 其他好文 > 详细

RadioButtonList选择事件onclick

时间:2015-05-21 10:20:42      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

<asp:RadioButtonList ID="rbtnFInvoiceType" runat="server" onclick="checkType()"
RepeatDirection="Horizontal">
<asp:ListItem Selected="True">收据</asp:ListItem>
<asp:ListItem>发票</asp:ListItem>
</asp:RadioButtonList>

 

 


//选择票据类型
function checkType() {
if ($("#rbtnFInvoiceType").find("[checked]").val() == "发票") {
$("#txtFInvoiceCode").attr("readonly", false);
$("#txtFInvoiceCost").attr("readonly", false);
}
else {
$("#txtFInvoiceCode").attr("readonly", true);
$("#txtFInvoiceCost").attr("readonly", true);
$("#txtFInvoiceCode").val("");
$("#txtFInvoiceCost").val("");
}
}

RadioButtonList选择事件onclick

标签:

原文地址:http://www.cnblogs.com/taikongbai/p/4518897.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!