Web アプリケーションの 1 つにチェックボックス リスト コントロールがあります。SelectedIndexChanged イベントを処理するために JavaScript を使用したいと考えています。
チェックボックスリストは次のようになります
<asp:CheckBoxList ID="CheckBoxList1" runat="server">
<asp:ListItem>One</asp:ListItem>
<asp:ListItem>Two</asp:ListItem>
<asp:ListItem>Three</asp:ListItem>
<asp:ListItem>Four</asp:ListItem>
<asp:ListItem>Five</asp:ListItem>
</asp:CheckBoxList>
javascript を使用して SelectedIndexChanged イベントを取得するにはどうすればよいですか?