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
}
但是我如何访问单选按钮元素?