码迷,mamicode.com
首页 > Web开发 > 详细

我所常用的ajax调用格式

时间:2015-08-19 13:15:32      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

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提交:

$(‘#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调用格式

标签:

原文地址:http://www.cnblogs.com/luminji/p/4741840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!