我们通常的需要打开新窗口的时候,会采用下面三者之一:(我不知道是否还有其他方法)
1.通过链接打开新的页面<a href="http://www.simplelife.cn" target="_blank">Open a new window</a>
2.通过JavaScript的window.open()函数打开新的窗口<script>window.open("http://www.simplelife.cn");</script>
3.通过Form表单提交到新的页面<form action="http://www.simplelife.cn" target="_blank">Open a new window</form>
有的时候,我们不但要打开新窗口,而且还想让打开的新窗口有referrer信息,以便统计来路。
通过实验发现:在firefox浏览器下,上面的三种方式在新窗口中都可以顺利的保留referrer...