var url = "${path}/fftAction/showBillType.action?fftorg.id=" + obj.value;
$.post(url,function(data){
var str = "";
if(data.zdcx == "Y"){
str+="<input type='radio' style='width: 20px;'/>"+data.cxfs; 
}
if(data.zdxz == "Y"){
str+="<input type='radio' style='width: 20px;'/>条形码"; 
}
$("#billType").html(str);  
},"json");
    $("#required").show();用javascript写了上述代码后,发现单选框变成可以多选的情况,请问如何解决?