-1

HTML コード :

<div class="poll_all_chs" >
            {% for ch in poll_obj.get_choices %}
                <div class="poll_ch">
                    <span><input type="radio" id="radio_button" name="choice_id" value="{{ch.id}}">{{ch.choice}}</span>
                </div>
</div>

jqueryライクを使ってラジオボタンの状態を確認したい

if(radio_ele).is(':checked')) { 
                        bool =  true
                }

しかし、どうすればラジオボタン要素にアクセスできますか?

4

3 に答える 3