jquery 单选框是不是选中,单选框值
jquery 单选框是否选中,单选框值
if($("input[name='paytype']").is(":checked")){
alert('选中');
}
单选框值$("input[name='paytype']:checked").val();