我有一个网页上有很多链接。我想添加一个脚本来处理整个页面,当页面上的任何链接被点击时,它会将该链接保存到变量,然后重定向到www.redirectlink.com
我到目前为止
$('a').click(function(){
location.href='http://www.redirectlink.com';
return false;
});
这是正确的吗?如何将原始网址保存在我之后可以在www.redirectlink.com页面上使用的变量中
答案 0 :(得分:1)
$('a').click(function(e){
e.preventDefault();
document.location.href='http://www.redirectlink.com?ref='+this.href;
return false;
});
您现在可以在重定向链接中使用$_REQUEST['ref']
来检查引用者。