例如我当前的网址是
http://www.sample.com/check/?code=1
此网址下的网页包含一个链接
<a href="http://www.sample.com/check/?code=2">Code2</a>
点击此链接后,需要http://www.sample.com/check/?code=2
问题:
在http://www.sample.com/check/?code=2
下显示的网页下,我必须获取此页面来自的网址。这该怎么做。
提前致谢...
答案 0 :(得分:3)
<script type="text/javascript">
alert(document.referrer);
</script>
答案 1 :(得分:1)
如果您控制原始页面,那么您可以在URL中放置一个源:
<a href="http://www.sample.com/check/?code=2&scr=http://foo.com/xxxx">Code2</a>
你可以从第二页的URL中解析出来。
或者您可以在第二页中查看document.referrer
,看看它是否包含您想要的值。有关推荐人的信息,请参阅https://developer.mozilla.org/en/document.referrer。
答案 2 :(得分:0)