var optionids = “”;
$( "#answerBody" ).find( ":radio:checked").each(function(){ optionids += $(this).val() + ",";})
,上面方法只能获得一组选中的值,因为页面多组radio radio名字是动态的
对不起 没豆了
find( "input:radio:checked") 试试
在each(function(){
console.log(this);// 就可以了
});