0%
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| $.ajax({ async: true, url: "url", method: "POST", dataType: "json", data: { data1: "a", data2: "b", data3: "c" }, beforeSend: function () { }, success: function (result) { }, error: function () { }, complete: function () { } });
|
更多内容