ajax如何删除X-Requested-With:
在实际应用中,X-Requested-With一般用来判断一个请求是否是ajax请求,不过有时候这个并不需要,所以要将其删除,下面就此就进行一下简单介绍,希望能够对需要的朋友带来或多或少的帮助。
解决方案如下:
$.ajax({ url: ‘http://www.softwhy.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‘ ); } } });
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=11006
更多内容可以参阅:http://www.softwhy.com/jquery/
时间: 2024-10-15 12:34:31