添加HTML链接的Get调用的HTTP标头

时间:2015-09-15 07:50:32

标签: javascript jquery html ajax

我的HTML代码中有<a>标记。 将单击此链接以获取302重定向。 但是,我想在此get调用中添加一些HTTP标头。 我怎样才能做到这一点? 属性href不能包含在HTTP标头中。

的BR, 瑞恩

1 个答案:

答案 0 :(得分:0)

我无法理解为什么你需要这个,但如果我遇到这样的任务我就做过这样的事情:

$('a').click(fucntion(e){
  e.preventDefault();
  $.ajax({
      url:$(this).attr('href'),
      headers: {'header1':'value1','header2':'value2'},
      success:function (data,status,xhr){
        //some handling code
        window.location=xhr.url;
      }
  });
});