首页 > 代码库 > jQuery ajax请求

jQuery ajax请求

$.ajax({
  url: ‘/Business/GetInsuranceDetail‘, //请求的地址
  data: {
    "UserID": $("#UserID").val()      //  参数名:值
  },
  type: ‘post‘,            //提交方式post或get
  cache: false,
  dataType: ‘json‘,
  success: function (data) {
     var name = data.UserName;
  },
  error: function (XMLHttpRequest, textStatus, errorThrown) {
    $.messager.alert(‘提示‘, ‘异常!‘, ‘error‘);
  }
});

jQuery ajax请求