前提・実現したいこと
ラジオボタンリストで何かしらの項目にチェックがついている場合、その状態を取得したい。
該当のソースコード
HTML
1<asp:RadioButtonList ID="RadioButtonList1" runat="server"> 2 <asp:ListItem>選択1</asp:ListItem> 3 <asp:ListItem>選択2</asp:ListItem> 4</asp:RadioButtonList>
追記(ブラウザ上のHTML)
HTML
1<table id="RadioButtonList1" name="radiolist1"> 2 <tbody> 3 <tr> 4 <td> 5 <input id="RadioButtonList1_0" type="radio" name="ct100$RadioButtonList1" value="選択1"> 6 <label for="RadioButtonList1_0">選択1</label> 7 </td> 8 </tr> 9 <tr> 10 <td> 11 <input id="RadioButtonList1_1" type="radio" name="ct100$RadioButtonList1" value="選択2"> 12 <label for="RadioButtonList1_1">選択2</label> 13 </td> 14 </tr> 15 </tbody> 16</table> 17
発生している問題
下記のように書いたのですが、チェック状態を取得することができていない状態です。
やり方が分からず検索したのですが、ヒットせず答えを導き出せていません。
jquery
1var optnum = ""; 2if ($("#RadioButtonList1").checked == true) { 3 optnum = 1; 4} else { 5 optnum = ""; 6}
初歩的な質問で申しわけないのですが、お力添えの程宜しくお願い致します。
補足情報(FW/ツールのバージョンなど)
Microsoft Visual Studio 2010
.NET Framework 4
ASP.NET
Web Form
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/04 06:17
2020/08/04 07:17
2020/08/04 07:40
2020/08/04 07:47
2020/08/04 08:11 編集
2020/08/04 08:17
2020/08/04 08:25