$.ajax({
type: "POST",
url: "test.ashx",
beforeSend: function(XMLHttpRequest){
$("#aaa").show();
},
data: "",
success: function(msg){
$("#div").append(msg);
},
complete: function(XMLHttpRequest, textStatus){
$("#aaa").hide();
}
});

相关文章:

  • 2022-12-23
猜你喜欢
  • 2022-03-05
  • 2022-12-23
  • 2021-08-26
  • 2021-10-02
  • 2021-12-07
相关资源
相似解决方案