$.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); } });
时间: 2024-10-03 15:25:31