如何使用引荐自动点击链接或自动重定向带引荐的链接?

时间:2011-12-07 08:20:05

标签: javascript html redirect referrer

如何使用引荐来源自动点击链接或使用引荐来源自动重定向链接? 正如我测试的那样,使用location.href和location.replace不会将引用者传递给下一页。任何方法?

1 个答案:

答案 0 :(得分:0)

你可以通过这个

      <meta http-equiv="refresh" content="N; URL=other-web-address">

其中N是您希望在浏览器自动转到其他网址之前显示当前网页的大约秒数。如果N = 0,则浏览器应立即转到另一个Web地址。

有关详情,请查看here

或者您也可以使用此

   <HTML>
   <script>

   function autoChange()
   {
   var timeID = setTimeout("location.href= 'http://www.xyz.com'", 1000)
   }
   </script>
  <BODY onLoad="autoChange()">
   Welcome to my website,... unfortunally we moved it to WWW.xyz.COM.<BR>
   Your browser will automatically jump there.<BR>
   If it doesn't then please click <A HREF="http://www.xyz.com">here</A> to go there.
   </BODY>
   </HTML>