jQuery操作radio选中和取值

1.选中radio

$("input[name='test'][value=1]").attr("checked",true);

2.取值radio

   $("input[name='killOrder']:checked").val();

原文地址:https://www.cnblogs.com/kingsmart/p/13260606.html