var temp="";
$.ajax({
type: "POST",
async : false,
data:{"id":data.id},
url:"/hzz_admin/chairmanLib/queryhuzinformation",
success: function (smUsers) {
$.each(smUsers, function (index, n){
var str="";
if(smUsers[index].chairmanlevel==1){
str="省级"
}
if(smUsers[index].chairmanlevel==2){
str="市级"
}
if(smUsers[index].chairmanlevel==3){
str="县级"
}
if(smUsers[index].chairmanlevel==4){
str="镇级"
}
if(smUsers[index].chairmanlevel==5){
str="村级"
};
temp+='<tr><th width="20%">湖长</th><td width="30%">'+smUsers[index].name+' </td><th width="20%">湖长级别</th><td width="30%">'+str+'</td></tr><tr><th >联系方式</th><td colspan="3">'+smUsers[index].cellphone+'</td></tr>';
});
return temp;
}
});
async : false,//设置成false不然不管用。
最后一定要return ;