我没有得到你的最后一句,但我认为你需要在点击你的手风琴div时检查单选按钮。您可以使用.prop()方法来实现这一目标。所以使用这个jquery脚本代码
$("a[href='#collapse1']").click(function()
{
$('#instant_delivery').prop('checked',true);
});
$("a[href='#collapse2']").click(function()
{
$('#optionsRadios1').prop('checked',true);
});
继承你的codepen