我想发出带有标头的HTTP GET请求,例如当用户单击链接时,例如。 google.com在我的网站上,请求确定我设置的标头,并在请求中设置标头,是否有任何方法可以做到这一点?
我尝试过
$.ajax({
type : "GET",
url : "[the-target-url]",
beforeSend: function(xhr){xhr.setRequestHeader('HEADER', 'VALUE');},
success : function(result) {
//set your variable to the result
},
error : function(result) {
//handle the error
}
});
但遇到一些错误
1-我只想将用户重定向到带有我设置的标头的google.com域
编辑:我更新了问题