//根据value值设置radio选中状态
<input type="radio" class="sex" name="sex" value="m"/>男
<input type="radio" name="sex" value="y" />女
var sex = $(".sex").val();
$(":radio[name='sex'][value='" + sex + "']").prop("checked", "checked");
来源:CSDN
作者:土草贝
链接:https://blog.csdn.net/weixin_42700169/article/details/103119107