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

Jquery.Ajax的使用方法(自己已经实践过可行)

时间:2017-07-13 21:46:05      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:delete   ajax   res   cat   min   mod   admin   end   erp   

1.Get

 $(‘.manager_republish.notVIP‘).click(function () {
        $.ajax({
            async: false,
            type: "get",
            url: ‘@Url.Action("NeedVipPermisson", "MessageDialog", new { area = "Default", Title = "非VIP企业", Content = "此职位不属于VIP企业,不能重新发布" })‘,
            success: function (data) { ShowMessageModelDialog(data)},
            error: function (jqXHR, textStatus, errorThrown) {
                alert("出错了" + textStatus + " " + errorThrown);
            }
        });
    });

 

2.Post

$.ajax({
        async: false,
        dataType: "JSON",
        contentType: "Application/json",
        type: "post",
        url: "../../Control/Webservice/changeInfo.asmx/Insertdata",
        data: "{‘user_Name‘:‘"+user_name+"‘,‘stu_id‘:‘" + stu_id.val() + "‘,‘stu_name‘:‘" + stu_name.val() + "‘,‘stu_major‘:‘" + stu_major.val()
            + "‘,‘stu_dept‘:‘"+stu_dept.val()+"‘}",
        suceess: function(data) {
            alert(data.d);
        },
        error: function() {
            alert("chucuole");
        }
    });

 

3.Get的优雅用法

                $.getJSON(‘/Enterprise/Default/DeleteJob?id=‘ + key, 
                   function (data) {
                    if (data.isSuccess) { $(‘.Jobkey‘ + key).remove(); }
                    else {
                        alert(data.msg);
                    }
                });

 4.post的另一种用法

 function ReloadCities() {
                var $ddlCity = $("#ddlCity");
                var selec = $("#ddlProvince").val();
                if (selec) {
                    $ddlCity.find("option").remove();
                    var url = "@(Url.Action("CityListByProvinceId", "Enterprise", new { area = "Admin" }))";
                    $.post(url, { ‘id‘: selec }, function (data) {
                        for (var i = 1; i < data.length; i++) {
                            $($ddlCity).append($("<option></option>").text(data[i].addressName).val(data[i].addressId))
                        }
                    }, "json");
                }
                else {
                    $ddlCity.find("option").remove();
                    $("<option></option>").val("").text("--请选择--").appendTo($ddlCity);
                }
            }

5.load

$(‘#tabs-2‘).load(‘Temp_login.html‘, function (responseText, textStatus) {
    if (textStatus === "success") {
        $(‘#tabs-2 .form-actions .primary‘).attr("id", "tea_login");
        $("#tea_login").click(tea);
        
    }

 

Jquery.Ajax的使用方法(自己已经实践过可行)

标签:delete   ajax   res   cat   min   mod   admin   end   erp   

原文地址:http://www.cnblogs.com/qulianqing/p/7162661.html

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