こんにちは私はasp.netでjqueryアプリケーションを開発しています。私は以下のようなチェックボックスのリストを持っています。チェックボックスをチェックすると、私はそれを表示したい。以下は私のチェックボックスリストです。jqueryで選択したチェックボックスの値を取得するには?
<asp:CheckBoxList ID="ChKResons" runat="server" RepeatColumns="1" RepeatDirection="Horizontal" Style="margin-bottom: 8px; margin-right: 5px;" CellPadding="5" CellSpacing="25">
<asp:ListItem Text="Your financial offer exceeded our budgeted amount" value="1"/>
<asp:ListItem Text="Your technical offer didn't comply with Oman Air's technical requirement" Value="2" />
</asp:CheckBoxList>
これは私のjqueryコードです。
$('#ChKResons').on('click', ':checkbox', function() {
if ($(this).is(':checked')) {
// handle checkbox check
alert($(this).val());
} else {
// checkbox is unchecked
alert('unchecked')
}
});
$('#ChKResons :checkbox').live('click', function() {
alert($(this).is(':checked'));
});
上記のコードは機能しません。私はこれを整理するためにいくつかの助けを得ることができますか?助けをいただければ幸いです。ありがとうございました。
チェックボックスのクリックイベントが有効かどうかを確認するには、条件を事前に確認してください。 –