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

ajax请求

时间:2017-07-24 13:23:31      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:ted   post   tor   data   pen   $.ajax   str   pos   rate   

 

 

post请求

var url = this.server + "?action=dwm_canbeoperated&tablename=" + tableName;
url = $yw.g.id.appendUrl(url);
data = JSON.stringify(data);
var postData = {"data": data};
$.ajax({
  async: false,
  cache: false,
  type: ‘POST‘,
  data: postData,
  url: url,
  success: function (data) {
  result = data;
  result.type = "undelete";
  }
})

get请求

$.ajax({
  async: false,
  cache: false,
  type: ‘GET‘,
  url: edpurl,
  uccess: function (data) {
  var rows = data.rows;
  result.dataoperatorid = rows[0];
  }
});

ajax请求

标签:ted   post   tor   data   pen   $.ajax   str   pos   rate   

原文地址:http://www.cnblogs.com/gym2017/p/7228185.html

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