0

我正在使用谷歌分析来跟踪目标转换,使用一个桥页面,然后将用户重定向到附属网站。

我有一个关于重定向前超时的问题。您可以将页面设置为重定向以便 Google 收集分析目标转化数据的最快时间是多少?

下面是我在重定向之前在桥页面上使用的代码,它设置为:1500 - 1 秒半延迟。

<script type="text/javascript">
    setTimeout(function(){ window.location = "http://www.example.com"; },1500);
</script>

对于任何反馈,我们都表示感谢。

非常感谢保罗

4

1 回答 1

0

您可以使用分析事件来确保在重定向之前记录了重定向。

//Fires after page load
addListener(document, 'load', function() {
//Sends an event for page which where the action was redirect and the value is the current page
  ga('send', 'event', 'page', 'redirect', document.location);
//Refferes to new location after recording the action.
  window.location = NEW_LOCATION
});
于 2013-08-10T20:17:14.877 回答