如何从jQuery的ajax请求中删除X-Requested-With
更新时间:2013年12月11日 17:48:21 作者:
X-Requested-With常用于判断是不是ajax请求,ajax请求中删除X-Requested-With的方法如下,感兴趣的朋友可以参考下
X-Requested-With常用于判断是不是ajax请求
但是有时我们会有需要删除X-Requested-With的情况
下面介绍一种方式 js代码
$.ajax({
url: 'http://www.zhangruifeng.com',
beforeSend: function( xhr ) {
xhr.setRequestHeader('X-Requested-With', {toString: function(){ return ''; }});
},
success: function( data ) {
if (console && console.log){
console.log( 'Got data without the X-Requested-With header' );
}
}
});
附,判断ajax请求的方式 java代码
if (request.getHeader("x-requested-with") != null
&& request.getHeader("x-requested-with").equalsIgnoreCase("XMLHttpRequest")) {
//异步请求
}else{
}
但是有时我们会有需要删除X-Requested-With的情况
下面介绍一种方式 js代码
复制代码 代码如下:
$.ajax({
url: 'http://www.zhangruifeng.com',
beforeSend: function( xhr ) {
xhr.setRequestHeader('X-Requested-With', {toString: function(){ return ''; }});
},
success: function( data ) {
if (console && console.log){
console.log( 'Got data without the X-Requested-With header' );
}
}
});
附,判断ajax请求的方式 java代码
复制代码 代码如下:
if (request.getHeader("x-requested-with") != null
&& request.getHeader("x-requested-with").equalsIgnoreCase("XMLHttpRequest")) {
//异步请求
}else{
}
您可能感兴趣的文章:
相关文章
jQuery ajax 当async为false时解决同步操作失败的问题
这篇文章主要介绍了 jQuery ajax 当async为false时解决同步操作失败的问题的相关资料,需要的朋友可以参考下2016-11-11setInterval与clearInterval的使用示例代码
本篇主要是对setInterval与clearInterval的使用示例代码进行了介绍,需要的朋友可以过来参考下,希望对大家有所帮助2014-01-01jQuery对val和atrr("value")赋值的区别介绍
jQuery中val和atrr(value),对浏览器的区别,有默认值的情况下,如果用val()赋值了,那么当修改这个值得时候,google不能获取最新的值,但是ie可以2014-09-09
最新评论