我的页面上有一个 Asp.net 复选框列表控件 (id:MyChklst),在选择更改时我正在调用 Jquery 函数。
但问题是我想根据 on-change 函数中的一些验证取消选中或更改项目的颜色。
以下是我正在使用的代码
jQuery函数:
$('#MyChklst').on('click', ':checkbox', function () {
if ($(this).is(':checked')) {
alert($(this).val()); // Working
// alert($(this).text()); Not Working
//$(this).css("background-color"); Not Working
//$(this).attr('checked','false'); Not Working
}
});
请帮助我,并在此先感谢