当前位置: 代码迷 >> Java Web开发 >> axjax与ASP的数据交换的写法?解决办法
  详细解决方案

axjax与ASP的数据交换的写法?解决办法

热度:8507   发布时间:2013-02-25 21:18:52.0
axjax与ASP的数据交换的写法?
如果是
$.ajax({
  url:'http://192.168.1.1/123.asp',
  type:'GET',//以GET方式请求,
  data:{id:1},//你需要传递的数据,我这里id:1随便写的
  dataType:'json',//如果放回json,这里必须明确表示为json,否则他不理你的,
  success:function(rs){
  rs.xxx//xxx就是你的数据,干你想干的事情都在这里。
  }
});


那么123.asp获取data的数据并返回SUCCACC的数据是怎么写的? 


------解决方案--------------------------------------------------------
123.asp 可以这样写
<%
id = request("id")
reponse.write id
%>

success:function(rs){
alert(rs) // 弹出id
}

------解决方案--------------------------------------------------------
探讨

引用:
123.asp 可以这样写
<%
id = request("id")
reponse.write id
%>

success:function(rs){
alert(rs) // 弹出id
}

++++++++++++++++++++++++++
经测试失败!
  相关解决方案