Javascript Redirect with Google Analytics

后端 未结 9 706
暗喜
暗喜 2020-11-28 22:30

I need help figuring out how to successfully redirect while including Analytics code.

  • I have a subdomain setup http://buuf.fractalsystems.org
  • The subd
9条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-28 23:11

    If you're using the new GA code you can simply replace this line ga('send', 'pageview'); with this code:

    ga('send', 'pageview', {
      'hitCallback': function() {
          window.location = "http://www.your-site.com";
      }
    });
    

    Example in full:

      (function(i,s,o,g,r,a,m){
        i['GoogleAnalyticsObject']=r;
        i[r]=i[r]||function() {
            (i[r].q=i[r].q||[]).push(arguments)
        },i[r].l=1*new Date();
        a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];
        a.async=1;
        a.src=g;m.parentNode.insertBefore(a,m)
    })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
    
    ga('create', 'UA-xxxxxxx-2', 'auto');
    
    ga('send', 'pageview', {
      'hitCallback': function() {
          window.location = "http://www.your-site.com";
      }
    });
    

提交回复
热议问题