js获取单选框的值
var lx= $("input[name='lx']:checked").val();
$("input[name='status']")[1].checked=true;
根据当前对象 设为选中状态
$(this).prop( "checked",true);
js获取单选框的值
var lx= $("input[name='lx']:checked").val();
$("input[name='status']")[1].checked=true;
根据当前对象 设为选中状态
$(this).prop( "checked",true);