Analytics 添加允许锚点到 JS

发布于 2024-10-31 06:12:26 字数 601 浏览 0 评论 0原文

我想将我的广告系列跟踪设置为允许 # 而不是 ?使用 _setAllowAnchor(true)

然而,我还没有找到一个看起来很像我的 GA javascript 的例子(来自 html5boilerplate)。我如何将 add _setAllowAnchor(true) 添加到下面的 javascript 中?

<script>
   var _gaq = [['_setAccount', 'UA-XXXXXX-X'], ['_trackPageview']];
   (function(d, t) {
    var g = d.createElement(t),
        s = d.getElementsByTagName(t)[0];
    g.async = true;
    g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    s.parentNode.insertBefore(g, s);
   })(document, 'script');
  </script>

提前致谢。

I would like to set my campaign tracking to allow # instead of ? using _setAllowAnchor(true)

However, I have yet to find an example of the GA javascript that looks quite like mine (from html5boilerplate). How would I add add _setAllowAnchor(true) to the below javascript?

<script>
   var _gaq = [['_setAccount', 'UA-XXXXXX-X'], ['_trackPageview']];
   (function(d, t) {
    var g = d.createElement(t),
        s = d.getElementsByTagName(t)[0];
    g.async = true;
    g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    s.parentNode.insertBefore(g, s);
   })(document, 'script');
  </script>

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

李不 2024-11-07 06:12:27
var _gaq = [['_setAccount', 'UA-XXXXXX-X'], ['_setAllowAnchor', true], ['_trackPageview']];

这里要注意的主要事情是它需要出现在 _trackPageview 之前,因为这是代码的实际触发器。

var _gaq = [['_setAccount', 'UA-XXXXXX-X'], ['_setAllowAnchor', true], ['_trackPageview']];

The main thing to note here is that it needs to come before the _trackPageview, as that is the actual trigger for the code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文