我在页面上有两个 asp 单选按钮,它们位于updatepanel
. 我用 jQuery 为他们写了一个点击事件,如下所示:
$(document).ready(function () {
$(".inputs").click(function () {
alert($(this).id);
});
});
但它返回未定义。问题是什么?
EDIT:
alert(" or " + $(this).attr("id"));
alert(this.id);
这两行返回null
!