ajax请求成功之前的加载提示
$.ajax({ beforeSend:function(){ $("#showMes").html('loading...'); }, success:function(){ $("#showMes").html(''); }});
ajax请求成功之前的加载提示$.ajax({ beforeSend:function(){ $("#showMes").html('loading...'); }, success:function(){ $("#showMes").html(''); }});
|