我正在尝试为来自 Google 的用户提供横幅,因此我需要推荐人来执行此操作。我已经设法在普通页面上做到了,但在 AMP 上我无法让它工作,因为document.referrer
返回undefined
。
任何想法如何在 AMP 页面上获取它?
<amp-script width="200" height="100" script="hello-world">
</amp-script>
<script id="hello-world" type="text/plain" target="amp-script">
console.log( document.referrer );
// returns undefined on AMP page
</script>