使用javascript重定向时的Referer

时间:2017-03-15 10:54:41

标签: javascript html redirect referer

我有一个HTML页面A,我用window.open打开HTML页面B.然后我将HTML页面B重定向到HTML页面C但我得到HTML页面A作为引用者。我需要进入第C页,B作为推荐人。

1 个答案:

答案 0 :(得分:0)

因为主要的引用者是Ahtml页面。

you can use window.location.href



window.location.href example:

window.location.href = 'http://www.google.com'; //Will take you to Google.

window.open()示例:

window.open('http://www.google.com'); //This will open Google in a new window.