ajax提交中,提交结束的写法

来源:互联网 发布:mac 如何画时间轴 编辑:程序博客网 时间:2024/05/20 01:39
 $.ajax({                    url: "/group/searchquan", dataType: "json",                    data: { name: '@Model.Message', param: i, uid: userid, quantype: '@Model.quantype' },                    beforeSend: function () {                        $("#moremore").html("加载中...");                    },                    complete: function () {                        $("#moremore").html("加载更多");                    },                    success: function (data) {                                    }                });

0 0