js中怎么响应多个ajax请求例程
发布网友
发布时间:2022-04-23 06:41
我来回答
共2个回答
热心网友
时间:2022-04-23 08:11
前台指定传的参数
$("#Query").click(function () {
var id = document.getElementById("txtId").value;
$.ajax({
type: "POST",
url: "EndTree.aspx?Op_Type=Query",
data: { txtId: id },
success: function (data) {
alert(data.id);
}
});
});
$("#delete").click(function () {
var id = document.getElementById("txtId").value;
$.ajax({
type: "post",
url: "EndTree.aspx?Op_type=Delete",
async: false,
data: { txtId: id },
success: function (data) {
getTree();
if (data.toString() != "error") {
{ alert("删除成功!"); }
}
}
});
});
后台进行 if (Request["Req_Type"] == "QueryMessage")
{ 你的方法;
}
热心网友
时间:2022-04-23 09:29
你把JS想象的太完美了,它没有线程,只能一步步来。