ajax如何刪除X-Requested-With:在實際應用中,X-Requested-With一般用來判斷一個請求是否是ajax請求,不過有時候這個並不需要,所以要將其刪除,下麵就此就進行一下簡單介紹,希望能夠對需要的朋友帶來或多或少的幫助。解決方案如下:$.ajax({ url: 'http.....
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/