一个包含error:function的ajax请求

前端之家收集整理的这篇文章主要介绍了一个包含error:function的ajax请求前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<1>

  $.ajax({
                type: "POST",url: "/Ms_Friendly_Link/Create",data: model,async: false,error: function (request) {
                    $.messager.alert('提示','新增失败');
                },success: function (data) {
                    if (data > 0) {
                        window.location = "/Ms_Friendly_Link/Index";
                    }
                    else
                        $.messager.alert('提示','新增失败,已存在此网站的友情链接');
                }
            });
原文链接:https://www.f2er.com/ajax/163709.html

猜你在找的Ajax相关文章