【发布时间】:2016-07-27 21:05:41
【问题描述】:
我的页面上有一个 RadioButtonList 控件,它有多个选项。我想处理其选项的更改,并根据所选选项的值进行工作。
这不起作用:
$(document).ready(function () {
$('#RadioButtonList1').change(function () {
if ($(this).is(':checked')) {
alert("yes");
}
});
});
我该如何处理?
谢谢
【问题讨论】:
标签: javascript jquery asp.net radio-button