联系我们
简单又实用的WordPress网站制作教学
当前位置:网站首页 > 网页前端技术 > 正文

如何从jQuery的ajax请求中删除X-Requested-With - Web前端

作者:98wpeu发布时间:2026-06-09分类:网页前端技术浏览:9


导读:X-Requested-With常用于判断是不是Ajax请求但是有时我们会有需要删除X-Requested-With的情况下面介绍一种方式JS代码复制代码代码如下:$.aj...
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{

}

标签:WebRequestedajaxjQuery


网页前端技术排行
最近发表
网站分类
标签列表