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

jQuery ajax请求

时间:2017-07-01 16:19:47      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:nbsp   func   function   ajax   alert   提交   business   cache   ror   

$.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请求

标签:nbsp   func   function   ajax   alert   提交   business   cache   ror   

原文地址:http://www.cnblogs.com/wushijie/p/7102461.html

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