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

浙公网安备 33010602011771号