异步提交

 //异步提交
 2         $.ajax({
 3             type: "Post",
 4             url: "/common/review",
 5             success: function (data) {
 6                 alert(data.res);
 7             }
 8         });
 9 
10         //同步提交
11         $("form").submit();
学习交流群:364976091
原文地址:https://www.cnblogs.com/firstcsharp/p/2972346.html