$.ajax({ cache: true, type: "POST", url:"url", data:$(‘#formid‘).serialize(),// 你的formid async: false, error: function(request) { alert("Connection error"); }, success: function(data) { console.log(data); } });
时间: 2024-11-05 20:44:38
$.ajax({ cache: true, type: "POST", url:"url", data:$(‘#formid‘).serialize(),// 你的formid async: false, error: function(request) { alert("Connection error"); }, success: function(data) { console.log(data); } });