jquery的ajax提交form表单

$.ajax({
cache: true,
type: "POST",
url:ajaxCallUrl,
data:$('#yourformid').serialize(),// 你的formid
async: false,
error: function(request) {
alert("Connection error");
},
success: function(data) {
$("#commonLayout_appcreshi").parent().html(data);
}
});
上一篇:jquery使用ajax提交form表单


下一篇:ajax提交form表单资料详细汇总