$.ajax({
cache:
true
,
type:
"POST"
url:ajaxCallUrl,
data:$(
'#yourformid'
).serialize(),
//你的formid
async:
false
error:
function
(request){
alert(
"Connectionerror"
);
},
success:
(data){
$(
"#commonLayout_appcreshi"
).parent().html(data);
}
})
原文链接:https://www.f2er.com/ajax/164096.html