我所常用的ajax调用格式

ajax:

$.ajax({
    type: "post",
    datatype: "json",
    contentType: "application/x-www-form-urlencoded; charset=UTF-8",
    url: "/ProductTypeAndCat/AddType",
    async: true,
    cache: false,
    data: { typeName: typeName },
    success: function (data) {
        if (data.F == 1) {
            alert(data.M);
            return;
        }

        alert("添加成功!");
        location.href = "/Admin/ProductType";
    },
    error: function (xhr, status, error) {
        alert(error);
    }
});

form提交,利用此插件(http://jquery.malsup.com/form/):

$('#frmDemo').ajaxSubmit({
    type: "post",
    url: "/ProductTypeAndCat/AddCategory",
    success: function (data) {
        if (data.F == 1) {
            alert(data.M);
            return;
        }

        alert("添加成功");
        location.href = "/admin/createProductCategory";
    },
    error: function (xhr, status, err) {
        alert(err);
    }
});

我所常用的ajax调用格式本文基于Creative Commons Attribution 2.5 China Mainland License发布,欢迎转载,演绎或用于商业目的,但是必须保留本文的署名http://www.cnblogs.com/luminji(包含链接)。如您有任何疑问或者授权方面的协商,请给我留言。
上一篇:[华为机试练习题]30.计算整数的位数


下一篇:【NetApp】可以使用查设备备件型号的链接