单选组radio: $("input[@type=radio][@checked]").val();
单选组radio: $("input[@type=radio]").attr("checked",'2');//设置value=2的项目为当前选中项
var item = $('input[@name=items][@checked]').val();
radio单选组的第二个元素为当前选中值
$('input[@name=items]').get(1).checked = true
单选组 radio: $("input[@type=radio]").attr("checked",'2');//设置value=2的项目为当前选中项
jquery老的版本
var_name = $("input[@name='radio_name']:checked").val();
jquery 1.3以后的版本
var_name = $("input[name='radio_name']:checked").val();
var_name = $("input[name='isspecialcnt']:checked").val();
//alert(var_name);
if(var_name=='1'){
$("#isspecialcntyes").show();
$("#isspecialcntno").hide();
}
if(var_name=='0'){
$("#isspecialcntyes").hide();
(www.jb51.cc) $("#isspecialcntno").show();
}
}
原文链接:https://www.f2er.com/jquery/57522.html//alert(var_name);
if(var_name=='1'){
$("#isspecialcntyes").show();
$("#isspecialcntno").hide();
}
if(var_name=='0'){
$("#isspecialcntyes").hide();
(www.jb51.cc) $("#isspecialcntno").show();
}
}
<form name="form1" method="post" action="">