$("#dianji").click(function(){
$.ajax({
type:"post",
url:"***.html",
data:{
repairitemid:$("#s_city").val(),
buildingid:$("#admin_floor").val()
},
beforeSend:function(){
$("#aaa").append("<img src='../image/5-121204194036.gif' style='width:20px;height:20px;'/>");
},
success:function(result){
if(result==""||result==null)
{
$("#ddd").html("");
$("#ddd").html("<span id='admin_sup_a'>没有人员</span>");
}else{
$("#ddd").html("");
$("#ddd").html(result);
}
//alert(result);
},
complete:function(){
$("#aaa").remove();
},
error:function(err){
alert("网络异常");
}
});
});
如何让beforeSend每次点击都加载,如何设置
胡说叔叔
天涯尽头无女友