我有一个HTML页面A,我用window.open
打开HTML页面B.然后我将HTML页面B重定向到HTML页面C但我得到HTML页面A作为引用者。我需要进入第C页,B作为推荐人。
答案 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.