に配置されているページに2つのaspラジオボタンがありますupdatepanel
。私は次のようにjQueryを使用してクリックイベントを作成しました。
$(document).ready(function () {
$(".inputs").click(function () {
alert($(this).id);
});
});
ただし、Undefinedを返します。何が問題ですか?
EDIT:
alert(" or " + $(this).attr("id"));
alert(this.id);
これらの2行は戻りnull
ます!