52,782
社区成员
发帖
与我相关
我的任务
分享
//jQuery ajax
var xmlDocument = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>";
//xmlDocument+=... 略
$.ajax({
type:"POST",
dataType:'html',
url: "pp.aspx?t=add",
processData: false,
data: xmlDocument,
async:true,
beforeSend:function(){$("#loading").show();},
success:function(d){$("#view").html(d);$("#loading").hide();},
error:function(){$("#loading").hide();$("#view").html('数据载入错误...');},timeout:10000});
});
//jQuery ajax
var xmlDocument = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>";
//xmlDocument+=... 略
xmlDocument = 't=' + encodeURIComponent(xmlDocument);
$.ajax({
type:"POST",
dataType:'html',
url: "pp.aspx?t=add",
processData: false,
data: xmlDocument,
async:true,
beforeSend:function(){$("#loading").show();},
success:function(d){$("#view").html(d);$("#loading").hide();},
error:function(){$("#loading").hide();$("#view").html('数据载入错误...');},timeout:10000});
});
ValidateRequest="false"