- 获取header中的参数
(1) 通过java代码获取
(2) 通过ajax自己返回的参数获取<%= response.getHeader(String name)%>
success : function(data,textStatus,reponse){ //data--请求返回数据 //textStatus--状态码 //reponse--响应头信息 var expire = reponse.getResponseHeader("Session-Expired"); }
- ajax常见使用方法
上述内容来源:http://www.runoob.com/jquery/jquery-ref-ajax.html
上述最常用的就是 . a j a x ( ) 、 .ajax()、 .ajax()、.ajaxSetup()、 . g e t ( ) 、 .get()、 .get()、.post()
(1) $.ajaxSetup()
可以给当前页面所有的ajax请求设置默认参数
可以用来定义请求前后需要执行的内容,最常见的方法就是beforeSend(xhr)、complete(xhr,status)以及dataFilter(data,type)$.ajaxSetup({ url:"demo_ajax_load.txt", success:function(result){ $("div").html(result); } }); $.ajax();
ajax常见使用技巧总结
最新推荐文章于 2020-05-28 17:47:34 发布