如何从jQuery的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){ co
用户评论